aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/3c59x.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/3c59x.c')
-rw-r--r--drivers/net/3c59x.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 179871d9e71f..8cc22568ebd3 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -699,7 +699,8 @@ DEFINE_WINDOW_IO(32)
699#define DEVICE_PCI(dev) NULL 699#define DEVICE_PCI(dev) NULL
700#endif 700#endif
701 701
702#define VORTEX_PCI(vp) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL) 702#define VORTEX_PCI(vp) \
703 ((struct pci_dev *) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL))
703 704
704#ifdef CONFIG_EISA 705#ifdef CONFIG_EISA
705#define DEVICE_EISA(dev) (((dev)->bus == &eisa_bus_type) ? to_eisa_device((dev)) : NULL) 706#define DEVICE_EISA(dev) (((dev)->bus == &eisa_bus_type) ? to_eisa_device((dev)) : NULL)
@@ -707,7 +708,8 @@ DEFINE_WINDOW_IO(32)
707#define DEVICE_EISA(dev) NULL 708#define DEVICE_EISA(dev) NULL
708#endif 709#endif
709 710
710#define VORTEX_EISA(vp) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : NULL) 711#define VORTEX_EISA(vp) \
712 ((struct eisa_device *) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : NULL))
711 713
712/* The action to take with a media selection timer tick. 714/* The action to take with a media selection timer tick.
713 Note that we deviate from the 3Com order by checking 10base2 before AUI. 715 Note that we deviate from the 3Com order by checking 10base2 before AUI.
@@ -982,7 +984,7 @@ static int __init vortex_eisa_init(void)
982 * any device have been found when we exit from 984 * any device have been found when we exit from
983 * eisa_driver_register (the bus root driver may not be 985 * eisa_driver_register (the bus root driver may not be
984 * initialized yet). So we blindly assume something was 986 * initialized yet). So we blindly assume something was
985 * found, and let the sysfs magic happend... 987 * found, and let the sysfs magic happened...
986 */ 988 */
987 eisa_found = 1; 989 eisa_found = 1;
988 } 990 }
@@ -1742,7 +1744,7 @@ vortex_open(struct net_device *dev)
1742 1744
1743 /* Use the now-standard shared IRQ implementation. */ 1745 /* Use the now-standard shared IRQ implementation. */
1744 if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ? 1746 if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ?
1745 &boomerang_interrupt : &vortex_interrupt, IRQF_SHARED, dev->name, dev))) { 1747 boomerang_interrupt : vortex_interrupt, IRQF_SHARED, dev->name, dev))) {
1746 pr_err("%s: Could not reserve IRQ %d\n", dev->name, dev->irq); 1748 pr_err("%s: Could not reserve IRQ %d\n", dev->name, dev->irq);
1747 goto err; 1749 goto err;
1748 } 1750 }