diff options
author | Joe Perches <joe@perches.com> | 2010-12-21 05:16:08 -0500 |
---|---|---|
committer | Joe Perches <joe@perches.com> | 2010-12-21 05:16:08 -0500 |
commit | b6bc765067ece933cc3dc7f5e95665a89100b1d5 (patch) | |
tree | bbf55c2d80e839eb4c0ab23bcbdd656d14b3f5fe /drivers/net/ni52.c | |
parent | 895950c2a6565d9eefda4a38b00fa28537e39fcb (diff) |
drivers/net/*.c: Use static const
Using static const generally increases object text and decreases data size.
It also generally decreases overall object size.
Signed-off-by: Joe Perches <joe@perches.com>
Diffstat (limited to 'drivers/net/ni52.c')
-rw-r--r-- | drivers/net/ni52.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ni52.c b/drivers/net/ni52.c index 33618edc61f9..d973fc6c6b88 100644 --- a/drivers/net/ni52.c +++ b/drivers/net/ni52.c | |||
@@ -388,9 +388,9 @@ static long memend; /* e.g 0xd4000 */ | |||
388 | struct net_device * __init ni52_probe(int unit) | 388 | struct net_device * __init ni52_probe(int unit) |
389 | { | 389 | { |
390 | struct net_device *dev = alloc_etherdev(sizeof(struct priv)); | 390 | struct net_device *dev = alloc_etherdev(sizeof(struct priv)); |
391 | static int ports[] = {0x300, 0x280, 0x360 , 0x320 , 0x340, 0}; | 391 | static const int ports[] = {0x300, 0x280, 0x360, 0x320, 0x340, 0}; |
392 | const int *port; | ||
392 | struct priv *p; | 393 | struct priv *p; |
393 | int *port; | ||
394 | int err = 0; | 394 | int err = 0; |
395 | 395 | ||
396 | if (!dev) | 396 | if (!dev) |