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/at1700.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/at1700.c')
-rw-r--r-- | drivers/net/at1700.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/at1700.c b/drivers/net/at1700.c index 544d5af6950e..d4ab69f032be 100644 --- a/drivers/net/at1700.c +++ b/drivers/net/at1700.c | |||
@@ -468,7 +468,7 @@ found: | |||
468 | lp->jumpered = is_fmv18x; | 468 | lp->jumpered = is_fmv18x; |
469 | lp->mca_slot = slot; | 469 | lp->mca_slot = slot; |
470 | /* Snarf the interrupt vector now. */ | 470 | /* Snarf the interrupt vector now. */ |
471 | ret = request_irq(irq, &net_interrupt, 0, DRV_NAME, dev); | 471 | ret = request_irq(irq, net_interrupt, 0, DRV_NAME, dev); |
472 | if (ret) { | 472 | if (ret) { |
473 | printk(KERN_ERR "AT1700 at %#3x is unusable due to a " | 473 | printk(KERN_ERR "AT1700 at %#3x is unusable due to a " |
474 | "conflict on IRQ %d.\n", | 474 | "conflict on IRQ %d.\n", |