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/wd.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/wd.c')
-rw-r--r-- | drivers/net/wd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wd.c b/drivers/net/wd.c index f1549fff0edc..8831a3393ecf 100644 --- a/drivers/net/wd.c +++ b/drivers/net/wd.c | |||
@@ -275,7 +275,7 @@ static int __init wd_probe1(struct net_device *dev, int ioaddr) | |||
275 | dev->base_addr = ioaddr+WD_NIC_OFFSET; | 275 | dev->base_addr = ioaddr+WD_NIC_OFFSET; |
276 | 276 | ||
277 | if (dev->irq < 2) { | 277 | if (dev->irq < 2) { |
278 | int irqmap[] = {9,3,5,7,10,11,15,4}; | 278 | static const int irqmap[] = {9, 3, 5, 7, 10, 11, 15, 4}; |
279 | int reg1 = inb(ioaddr+1); | 279 | int reg1 = inb(ioaddr+1); |
280 | int reg4 = inb(ioaddr+4); | 280 | int reg4 = inb(ioaddr+4); |
281 | if (ancient || reg1 == 0xff) { /* Ack!! No way to read the IRQ! */ | 281 | if (ancient || reg1 == 0xff) { /* Ack!! No way to read the IRQ! */ |