Commit 7eefb04e authored by David Miller's avatar David Miller Committed by David S. Miller

NET: ns83820.c remove fastcall macro

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 49b11bc3
...@@ -611,8 +611,7 @@ static inline int rx_refill(struct net_device *ndev, gfp_t gfp) ...@@ -611,8 +611,7 @@ static inline int rx_refill(struct net_device *ndev, gfp_t gfp)
return i ? 0 : -ENOMEM; return i ? 0 : -ENOMEM;
} }
static void rx_refill_atomic(struct net_device *ndev); static void rx_refill_atomic(struct net_device *ndev)
static void fastcall rx_refill_atomic(struct net_device *ndev)
{ {
rx_refill(ndev, GFP_ATOMIC); rx_refill(ndev, GFP_ATOMIC);
} }
...@@ -633,7 +632,7 @@ static inline void clear_rx_desc(struct ns83820 *dev, unsigned i) ...@@ -633,7 +632,7 @@ static inline void clear_rx_desc(struct ns83820 *dev, unsigned i)
build_rx_desc(dev, dev->rx_info.descs + (DESC_SIZE * i), 0, 0, CMDSTS_OWN, 0); build_rx_desc(dev, dev->rx_info.descs + (DESC_SIZE * i), 0, 0, CMDSTS_OWN, 0);
} }
static void fastcall phy_intr(struct net_device *ndev) static void phy_intr(struct net_device *ndev)
{ {
struct ns83820 *dev = PRIV(ndev); struct ns83820 *dev = PRIV(ndev);
static const char *speeds[] = { "10", "100", "1000", "1000(?)", "1000F" }; static const char *speeds[] = { "10", "100", "1000", "1000(?)", "1000F" };
...@@ -831,7 +830,7 @@ static void ns83820_cleanup_rx(struct ns83820 *dev) ...@@ -831,7 +830,7 @@ static void ns83820_cleanup_rx(struct ns83820 *dev)
} }
} }
static void fastcall ns83820_rx_kick(struct net_device *ndev) static void ns83820_rx_kick(struct net_device *ndev)
{ {
struct ns83820 *dev = PRIV(ndev); struct ns83820 *dev = PRIV(ndev);
/*if (nr_rx_empty(dev) >= NR_RX_DESC/4)*/ { /*if (nr_rx_empty(dev) >= NR_RX_DESC/4)*/ {
...@@ -852,7 +851,7 @@ static void fastcall ns83820_rx_kick(struct net_device *ndev) ...@@ -852,7 +851,7 @@ static void fastcall ns83820_rx_kick(struct net_device *ndev)
/* rx_irq /* rx_irq
* *
*/ */
static void fastcall rx_irq(struct net_device *ndev) static void rx_irq(struct net_device *ndev)
{ {
struct ns83820 *dev = PRIV(ndev); struct ns83820 *dev = PRIV(ndev);
struct rx_info *info = &dev->rx_info; struct rx_info *info = &dev->rx_info;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment