diff options
author | Joe Perches <joe@perches.com> | 2009-11-19 02:29:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-19 02:29:17 -0500 |
commit | a0607fd3a25ba1848a63a0d925e36d914735ab47 (patch) | |
tree | c9bbdf40c9ded30af844e80870a7180ce0c0cb5c /drivers/net/macsonic.c | |
parent | 2939e275994977b6c9eb7fd082b7b0caa35b96b0 (diff) |
drivers/net: request_irq - Remove unnecessary leading & from second arg
Not as fancy as coccinelle. Checkpatch errors ignored.
Compile tested allyesconfig x86, not all files compiled.
grep -rPl --include=*.[ch] "\brequest_irq\s*\([^,\)]+,\s*\&" drivers/net | while read file ; do \
perl -i -e 'local $/; while (<>) { s@(\brequest_irq\s*\([^,\)]+,\s*)\&@\1@g ; print ; }' $file ;\
done
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macsonic.c')
-rw-r--r-- | drivers/net/macsonic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/macsonic.c b/drivers/net/macsonic.c index b3d7d8d77f46..875d361fb79d 100644 --- a/drivers/net/macsonic.c +++ b/drivers/net/macsonic.c | |||
@@ -140,7 +140,7 @@ static irqreturn_t macsonic_interrupt(int irq, void *dev_id) | |||
140 | 140 | ||
141 | static int macsonic_open(struct net_device* dev) | 141 | static int macsonic_open(struct net_device* dev) |
142 | { | 142 | { |
143 | if (request_irq(dev->irq, &sonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) { | 143 | if (request_irq(dev->irq, sonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) { |
144 | printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, dev->irq); | 144 | printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, dev->irq); |
145 | return -EAGAIN; | 145 | return -EAGAIN; |
146 | } | 146 | } |
@@ -149,7 +149,7 @@ static int macsonic_open(struct net_device* dev) | |||
149 | * rupt as well, which must prevent re-entrance of the sonic handler. | 149 | * rupt as well, which must prevent re-entrance of the sonic handler. |
150 | */ | 150 | */ |
151 | if (dev->irq == IRQ_AUTO_3) | 151 | if (dev->irq == IRQ_AUTO_3) |
152 | if (request_irq(IRQ_NUBUS_9, &macsonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) { | 152 | if (request_irq(IRQ_NUBUS_9, macsonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) { |
153 | printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, IRQ_NUBUS_9); | 153 | printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, IRQ_NUBUS_9); |
154 | free_irq(dev->irq, dev); | 154 | free_irq(dev->irq, dev); |
155 | return -EAGAIN; | 155 | return -EAGAIN; |