diff options
author | Joe Perches <joe@perches.com> | 2010-12-21 11:16:08 +0100 |
---|---|---|
committer | Joe Perches <joe@perches.com> | 2010-12-21 11:16:08 +0100 |
commit | b6bc765067ece933cc3dc7f5e95665a89100b1d5 (patch) | |
tree | bbf55c2d80e839eb4c0ab23bcbdd656d14b3f5fe /drivers/net/3c503.c | |
parent | tg3: Use DEFINE_PCI_DEVICE_TABLE (diff) | |
download | linux-b6bc765067ece933cc3dc7f5e95665a89100b1d5.tar.xz linux-b6bc765067ece933cc3dc7f5e95665a89100b1d5.zip |
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) int retval; if (dev->irq < 2) { - int irqlist[] = {5, 9, 3, 4, 0}; - int *irqp = irqlist; + static const int irqlist[] = {5, 9, 3, 4, 0}; + const int *irqp = irqlist; outb(EGACFR_NORM, E33G_GACFR); /* Enable RAM and interrupts. */ do { |