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>
This commit is contained in:

committed by
David S. Miller

vanhempi
2939e27599
commit
a0607fd3a2
@@ -294,7 +294,7 @@ static void ni65_set_performance(struct priv *p)
|
||||
static int ni65_open(struct net_device *dev)
|
||||
{
|
||||
struct priv *p = dev->ml_priv;
|
||||
int irqval = request_irq(dev->irq, &ni65_interrupt,0,
|
||||
int irqval = request_irq(dev->irq, ni65_interrupt,0,
|
||||
cards[p->cardno].cardname,dev);
|
||||
if (irqval) {
|
||||
printk(KERN_ERR "%s: unable to get IRQ %d (irqval=%d).\n",
|
||||
|
Viittaa uudesa ongelmassa
Block a user