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/3c503.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/3c503.c')
-rw-r--r-- | drivers/net/3c503.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c503.c b/drivers/net/3c503.c index 4777a1cbcd8d..d84f6e8903a5 100644 --- a/drivers/net/3c503.c +++ b/drivers/net/3c503.c | |||
@@ -392,8 +392,8 @@ el2_open(struct net_device *dev) | |||
392 | int retval; | 392 | int retval; |
393 | 393 | ||
394 | if (dev->irq < 2) { | 394 | if (dev->irq < 2) { |
395 | int irqlist[] = {5, 9, 3, 4, 0}; | 395 | static const int irqlist[] = {5, 9, 3, 4, 0}; |
396 | int *irqp = irqlist; | 396 | const int *irqp = irqlist; |
397 | 397 | ||
398 | outb(EGACFR_NORM, E33G_GACFR); /* Enable RAM and interrupts. */ | 398 | outb(EGACFR_NORM, E33G_GACFR); /* Enable RAM and interrupts. */ |
399 | do { | 399 | do { |