diff options
author | Joe Perches <joe@perches.com> | 2015-05-05 10:05:49 -0700 |
---|---|---|
committer | Michael Grzeschik <m.grzeschik@pengutronix.de> | 2015-09-23 08:44:23 +0200 |
commit | 7f5e760c1b269044a4ba1b269263beca80ae2741 (patch) | |
tree | 0dd375faf8641f80967c456e1ff3fbdda86c1771 /drivers/net/arcnet/com90xx.c | |
parent | 01a1d5ac4e1a5890fd6c0d0ae900e1b6e4f851d6 (diff) | |
download | linux-7f5e760c1b269044a4ba1b269263beca80ae2741.tar.bz2 |
arcnet: Use normal kernel brace style
Move braces normal kernel locations.
Add missing braces.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Diffstat (limited to 'drivers/net/arcnet/com90xx.c')
-rw-r--r-- | drivers/net/arcnet/com90xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/arcnet/com90xx.c b/drivers/net/arcnet/com90xx.c index f0f06a274045..c16bfde97fbe 100644 --- a/drivers/net/arcnet/com90xx.c +++ b/drivers/net/arcnet/com90xx.c @@ -112,8 +112,7 @@ static void __init com90xx_probe(void) { int count, status, ioaddr, numprint, airq, openparen = 0; unsigned long airqmask; - int ports[(0x3f0 - 0x200) / 16 + 1] = - {0}; + int ports[(0x3f0 - 0x200) / 16 + 1] = { 0 }; unsigned long *shmems; void __iomem **iomem; int numports, numshmems, *port; |