diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2008-10-13 12:13:56 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-10-13 12:13:56 -0400 |
commit | e758936e02700ff88a0b08b722a3847b95283ef2 (patch) | |
tree | 50c919bef1b459a778b85159d5929de95b6c4a01 /drivers/net/fealnx.c | |
parent | 239cfbde1f5843c4a24199f117d5f67f637d72d5 (diff) | |
parent | 4480f15b3306f43bbb0310d461142b4e897ca45b (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
include/asm-x86/statfs.h
Diffstat (limited to 'drivers/net/fealnx.c')
-rw-r--r-- | drivers/net/fealnx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/fealnx.c b/drivers/net/fealnx.c index 3c1364de2b66..b455ae931f7a 100644 --- a/drivers/net/fealnx.c +++ b/drivers/net/fealnx.c | |||
@@ -431,7 +431,7 @@ static void getlinktype(struct net_device *dev); | |||
431 | static void getlinkstatus(struct net_device *dev); | 431 | static void getlinkstatus(struct net_device *dev); |
432 | static void netdev_timer(unsigned long data); | 432 | static void netdev_timer(unsigned long data); |
433 | static void reset_timer(unsigned long data); | 433 | static void reset_timer(unsigned long data); |
434 | static void tx_timeout(struct net_device *dev); | 434 | static void fealnx_tx_timeout(struct net_device *dev); |
435 | static void init_ring(struct net_device *dev); | 435 | static void init_ring(struct net_device *dev); |
436 | static int start_tx(struct sk_buff *skb, struct net_device *dev); | 436 | static int start_tx(struct sk_buff *skb, struct net_device *dev); |
437 | static irqreturn_t intr_handler(int irq, void *dev_instance); | 437 | static irqreturn_t intr_handler(int irq, void *dev_instance); |
@@ -658,7 +658,7 @@ static int __devinit fealnx_init_one(struct pci_dev *pdev, | |||
658 | dev->set_multicast_list = &set_rx_mode; | 658 | dev->set_multicast_list = &set_rx_mode; |
659 | dev->do_ioctl = &mii_ioctl; | 659 | dev->do_ioctl = &mii_ioctl; |
660 | dev->ethtool_ops = &netdev_ethtool_ops; | 660 | dev->ethtool_ops = &netdev_ethtool_ops; |
661 | dev->tx_timeout = &tx_timeout; | 661 | dev->tx_timeout = &fealnx_tx_timeout; |
662 | dev->watchdog_timeo = TX_TIMEOUT; | 662 | dev->watchdog_timeo = TX_TIMEOUT; |
663 | 663 | ||
664 | err = register_netdev(dev); | 664 | err = register_netdev(dev); |
@@ -1198,7 +1198,7 @@ static void reset_timer(unsigned long data) | |||
1198 | } | 1198 | } |
1199 | 1199 | ||
1200 | 1200 | ||
1201 | static void tx_timeout(struct net_device *dev) | 1201 | static void fealnx_tx_timeout(struct net_device *dev) |
1202 | { | 1202 | { |
1203 | struct netdev_private *np = netdev_priv(dev); | 1203 | struct netdev_private *np = netdev_priv(dev); |
1204 | void __iomem *ioaddr = np->mem; | 1204 | void __iomem *ioaddr = np->mem; |