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/appletalk | |
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/appletalk')
-rw-r--r-- | drivers/net/appletalk/cops.c | 2 | ||||
-rw-r--r-- | drivers/net/appletalk/ltpc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/appletalk/cops.c b/drivers/net/appletalk/cops.c index b5dc7f550725..50cecf417471 100644 --- a/drivers/net/appletalk/cops.c +++ b/drivers/net/appletalk/cops.c | |||
@@ -328,7 +328,7 @@ static int __init cops_probe1(struct net_device *dev, int ioaddr) | |||
328 | 328 | ||
329 | /* Reserve any actual interrupt. */ | 329 | /* Reserve any actual interrupt. */ |
330 | if (dev->irq) { | 330 | if (dev->irq) { |
331 | retval = request_irq(dev->irq, &cops_interrupt, 0, dev->name, dev); | 331 | retval = request_irq(dev->irq, cops_interrupt, 0, dev->name, dev); |
332 | if (retval) | 332 | if (retval) |
333 | goto err_out; | 333 | goto err_out; |
334 | } | 334 | } |
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c index 08760baece7a..dbfbd3b7ff86 100644 --- a/drivers/net/appletalk/ltpc.c +++ b/drivers/net/appletalk/ltpc.c | |||
@@ -1158,7 +1158,7 @@ struct net_device * __init ltpc_probe(void) | |||
1158 | } | 1158 | } |
1159 | 1159 | ||
1160 | /* grab it and don't let go :-) */ | 1160 | /* grab it and don't let go :-) */ |
1161 | if (irq && request_irq( irq, <pc_interrupt, 0, "ltpc", dev) >= 0) | 1161 | if (irq && request_irq( irq, ltpc_interrupt, 0, "ltpc", dev) >= 0) |
1162 | { | 1162 | { |
1163 | (void) inb_p(io+7); /* enable interrupts from board */ | 1163 | (void) inb_p(io+7); /* enable interrupts from board */ |
1164 | (void) inb_p(io+7); /* and reset irq line */ | 1164 | (void) inb_p(io+7); /* and reset irq line */ |