diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/wd.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/wd.c')
-rw-r--r-- | drivers/net/wd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wd.c b/drivers/net/wd.c index eb72c67699ab..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! */ |
@@ -342,10 +342,10 @@ static int __init wd_probe1(struct net_device *dev, int ioaddr) | |||
342 | printk(" %s, IRQ %d, shared memory at %#lx-%#lx.\n", | 342 | printk(" %s, IRQ %d, shared memory at %#lx-%#lx.\n", |
343 | model_name, dev->irq, dev->mem_start, dev->mem_end-1); | 343 | model_name, dev->irq, dev->mem_start, dev->mem_end-1); |
344 | 344 | ||
345 | ei_status.reset_8390 = &wd_reset_8390; | 345 | ei_status.reset_8390 = wd_reset_8390; |
346 | ei_status.block_input = &wd_block_input; | 346 | ei_status.block_input = wd_block_input; |
347 | ei_status.block_output = &wd_block_output; | 347 | ei_status.block_output = wd_block_output; |
348 | ei_status.get_8390_hdr = &wd_get_8390_hdr; | 348 | ei_status.get_8390_hdr = wd_get_8390_hdr; |
349 | 349 | ||
350 | dev->netdev_ops = &wd_netdev_ops; | 350 | dev->netdev_ops = &wd_netdev_ops; |
351 | NS8390_init(dev, 0); | 351 | NS8390_init(dev, 0); |