diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-31 05:15:20 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-04-20 18:51:01 -0400 |
commit | e8f39549580e04e0b8edd11bae834ae7f8322fc8 (patch) | |
tree | 3e93830541b90301a82ce0510a4917d6fcc847ff /arch/ppc/8xx_io | |
parent | 349a2444cfcd6c078a8410c19cd7a950ff89bd96 (diff) | |
download | linux-3.10-e8f39549580e04e0b8edd11bae834ae7f8322fc8.tar.gz linux-3.10-e8f39549580e04e0b8edd11bae834ae7f8322fc8.tar.bz2 linux-3.10-e8f39549580e04e0b8edd11bae834ae7f8322fc8.zip |
[PPC] minor irq handler cleanups
- whitespace cleanups
- remove pointless prototype (uses always follow func implementation)
- 'irq' argument is used here purely as a local variable. rename
argument to 'dummy' and define 'irq' as local to make this plain.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/ppc/8xx_io')
-rw-r--r-- | arch/ppc/8xx_io/fec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/ppc/8xx_io/fec.c b/arch/ppc/8xx_io/fec.c index 11b0aa6ca97..d7b7ba93e1d 100644 --- a/arch/ppc/8xx_io/fec.c +++ b/arch/ppc/8xx_io/fec.c @@ -199,7 +199,6 @@ static int fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev); #ifdef CONFIG_USE_MDIO static void fec_enet_mii(struct net_device *dev); #endif /* CONFIG_USE_MDIO */ -static irqreturn_t fec_enet_interrupt(int irq, void * dev_id); #ifdef CONFIG_FEC_PACKETHOOK static void fec_enet_tx(struct net_device *dev, __u32 regval); static void fec_enet_rx(struct net_device *dev, __u32 regval); @@ -472,7 +471,7 @@ fec_timeout(struct net_device *dev) * This is called from the MPC core interrupt. */ static irqreturn_t -fec_enet_interrupt(int irq, void * dev_id) +fec_enet_interrupt(int irq, void *dev_id) { struct net_device *dev = dev_id; volatile fec_t *fecp; |