diff options
Diffstat (limited to 'drivers/net/macmace.c')
-rw-r--r-- | drivers/net/macmace.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/macmace.c b/drivers/net/macmace.c index 696d5513e558..464e4a6f3d5f 100644 --- a/drivers/net/macmace.c +++ b/drivers/net/macmace.c | |||
@@ -77,8 +77,8 @@ static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev); | |||
77 | static struct net_device_stats *mace_stats(struct net_device *dev); | 77 | static struct net_device_stats *mace_stats(struct net_device *dev); |
78 | static void mace_set_multicast(struct net_device *dev); | 78 | static void mace_set_multicast(struct net_device *dev); |
79 | static int mace_set_address(struct net_device *dev, void *addr); | 79 | static int mace_set_address(struct net_device *dev, void *addr); |
80 | static irqreturn_t mace_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 80 | static irqreturn_t mace_interrupt(int irq, void *dev_id); |
81 | static irqreturn_t mace_dma_intr(int irq, void *dev_id, struct pt_regs *regs); | 81 | static irqreturn_t mace_dma_intr(int irq, void *dev_id); |
82 | static void mace_tx_timeout(struct net_device *dev); | 82 | static void mace_tx_timeout(struct net_device *dev); |
83 | 83 | ||
84 | /* Bit-reverse one byte of an ethernet hardware address. */ | 84 | /* Bit-reverse one byte of an ethernet hardware address. */ |
@@ -573,7 +573,7 @@ static void mace_recv_interrupt(struct net_device *dev) | |||
573 | * Process the chip interrupt | 573 | * Process the chip interrupt |
574 | */ | 574 | */ |
575 | 575 | ||
576 | static irqreturn_t mace_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 576 | static irqreturn_t mace_interrupt(int irq, void *dev_id) |
577 | { | 577 | { |
578 | struct net_device *dev = (struct net_device *) dev_id; | 578 | struct net_device *dev = (struct net_device *) dev_id; |
579 | struct mace_data *mp = (struct mace_data *) dev->priv; | 579 | struct mace_data *mp = (struct mace_data *) dev->priv; |
@@ -645,7 +645,7 @@ static void mace_dma_rx_frame(struct net_device *dev, struct mace_frame *mf) | |||
645 | * The PSC has passed us a DMA interrupt event. | 645 | * The PSC has passed us a DMA interrupt event. |
646 | */ | 646 | */ |
647 | 647 | ||
648 | static irqreturn_t mace_dma_intr(int irq, void *dev_id, struct pt_regs *regs) | 648 | static irqreturn_t mace_dma_intr(int irq, void *dev_id) |
649 | { | 649 | { |
650 | struct net_device *dev = (struct net_device *) dev_id; | 650 | struct net_device *dev = (struct net_device *) dev_id; |
651 | struct mace_data *mp = (struct mace_data *) dev->priv; | 651 | struct mace_data *mp = (struct mace_data *) dev->priv; |