diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2007-12-12 13:46:51 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:57:23 -0500 |
commit | 41380930d2cbdc0abf7513a675864258b7ac973d (patch) | |
tree | bded49b68abc1d1414acd7bb10dadc01b84fd232 /drivers/net/ns83820.c | |
parent | 8b7817f3a959ed99d7443afc12f78a7e1fcc2063 (diff) |
[NET]: Remove FASTCALL macro
X86_32 was the last user of the FASTCALL macro, now that it
uses regparm(3) by default, this macro expands to nothing.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ns83820.c')
-rw-r--r-- | drivers/net/ns83820.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/ns83820.c b/drivers/net/ns83820.c index ea71f6d82661..972acc3d1276 100644 --- a/drivers/net/ns83820.c +++ b/drivers/net/ns83820.c | |||
@@ -611,7 +611,7 @@ static inline int rx_refill(struct net_device *ndev, gfp_t gfp) | |||
611 | return i ? 0 : -ENOMEM; | 611 | return i ? 0 : -ENOMEM; |
612 | } | 612 | } |
613 | 613 | ||
614 | static void FASTCALL(rx_refill_atomic(struct net_device *ndev)); | 614 | static void rx_refill_atomic(struct net_device *ndev)); |
615 | static void fastcall rx_refill_atomic(struct net_device *ndev) | 615 | static void fastcall rx_refill_atomic(struct net_device *ndev) |
616 | { | 616 | { |
617 | rx_refill(ndev, GFP_ATOMIC); | 617 | rx_refill(ndev, GFP_ATOMIC); |
@@ -633,7 +633,6 @@ static inline void clear_rx_desc(struct ns83820 *dev, unsigned i) | |||
633 | build_rx_desc(dev, dev->rx_info.descs + (DESC_SIZE * i), 0, 0, CMDSTS_OWN, 0); | 633 | build_rx_desc(dev, dev->rx_info.descs + (DESC_SIZE * i), 0, 0, CMDSTS_OWN, 0); |
634 | } | 634 | } |
635 | 635 | ||
636 | static void FASTCALL(phy_intr(struct net_device *ndev)); | ||
637 | static void fastcall phy_intr(struct net_device *ndev) | 636 | static void fastcall phy_intr(struct net_device *ndev) |
638 | { | 637 | { |
639 | struct ns83820 *dev = PRIV(ndev); | 638 | struct ns83820 *dev = PRIV(ndev); |
@@ -832,7 +831,6 @@ static void ns83820_cleanup_rx(struct ns83820 *dev) | |||
832 | } | 831 | } |
833 | } | 832 | } |
834 | 833 | ||
835 | static void FASTCALL(ns83820_rx_kick(struct net_device *ndev)); | ||
836 | static void fastcall ns83820_rx_kick(struct net_device *ndev) | 834 | static void fastcall ns83820_rx_kick(struct net_device *ndev) |
837 | { | 835 | { |
838 | struct ns83820 *dev = PRIV(ndev); | 836 | struct ns83820 *dev = PRIV(ndev); |
@@ -854,7 +852,6 @@ static void fastcall ns83820_rx_kick(struct net_device *ndev) | |||
854 | /* rx_irq | 852 | /* rx_irq |
855 | * | 853 | * |
856 | */ | 854 | */ |
857 | static void FASTCALL(rx_irq(struct net_device *ndev)); | ||
858 | static void fastcall rx_irq(struct net_device *ndev) | 855 | static void fastcall rx_irq(struct net_device *ndev) |
859 | { | 856 | { |
860 | struct ns83820 *dev = PRIV(ndev); | 857 | struct ns83820 *dev = PRIV(ndev); |