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/stmmac | |
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/stmmac')
-rw-r--r-- | drivers/net/stmmac/stmmac_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index c2f14dc9ba28..e961e7593c1f 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c | |||
@@ -1022,7 +1022,7 @@ static int stmmac_open(struct net_device *dev) | |||
1022 | } | 1022 | } |
1023 | 1023 | ||
1024 | /* Request the IRQ lines */ | 1024 | /* Request the IRQ lines */ |
1025 | ret = request_irq(dev->irq, &stmmac_interrupt, | 1025 | ret = request_irq(dev->irq, stmmac_interrupt, |
1026 | IRQF_SHARED, dev->name, dev); | 1026 | IRQF_SHARED, dev->name, dev); |
1027 | if (unlikely(ret < 0)) { | 1027 | if (unlikely(ret < 0)) { |
1028 | pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n", | 1028 | pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n", |