Commit 7eefb04eb0761ce220890975fe33b7c262612c0d

Authored by David Miller
Committed by David S. Miller
1 parent 49b11bc3d4

NET: ns83820.c remove fastcall macro

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

Showing 1 changed file with 4 additions and 5 deletions Side-by-side Diff

drivers/net/ns83820.c
... ... @@ -611,8 +611,7 @@
611 611 return i ? 0 : -ENOMEM;
612 612 }
613 613  
614   -static void rx_refill_atomic(struct net_device *ndev);
615   -static void fastcall rx_refill_atomic(struct net_device *ndev)
  614 +static void rx_refill_atomic(struct net_device *ndev)
616 615 {
617 616 rx_refill(ndev, GFP_ATOMIC);
618 617 }
... ... @@ -633,7 +632,7 @@
633 632 build_rx_desc(dev, dev->rx_info.descs + (DESC_SIZE * i), 0, 0, CMDSTS_OWN, 0);
634 633 }
635 634  
636   -static void fastcall phy_intr(struct net_device *ndev)
  635 +static void phy_intr(struct net_device *ndev)
637 636 {
638 637 struct ns83820 *dev = PRIV(ndev);
639 638 static const char *speeds[] = { "10", "100", "1000", "1000(?)", "1000F" };
... ... @@ -831,7 +830,7 @@
831 830 }
832 831 }
833 832  
834   -static void fastcall ns83820_rx_kick(struct net_device *ndev)
  833 +static void ns83820_rx_kick(struct net_device *ndev)
835 834 {
836 835 struct ns83820 *dev = PRIV(ndev);
837 836 /*if (nr_rx_empty(dev) >= NR_RX_DESC/4)*/ {
... ... @@ -852,7 +851,7 @@
852 851 /* rx_irq
853 852 *
854 853 */
855   -static void fastcall rx_irq(struct net_device *ndev)
  854 +static void rx_irq(struct net_device *ndev)
856 855 {
857 856 struct ns83820 *dev = PRIV(ndev);
858 857 struct rx_info *info = &dev->rx_info;