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>
このコミットが含まれているのは:
@@ -1050,7 +1050,7 @@ static int __init smc_probe(struct net_device *dev, int ioaddr)
|
||||
memset(netdev_priv(dev), 0, sizeof(struct smc_local));
|
||||
|
||||
/* Grab the IRQ */
|
||||
retval = request_irq(dev->irq, &smc_interrupt, 0, DRV_NAME, dev);
|
||||
retval = request_irq(dev->irq, smc_interrupt, 0, DRV_NAME, dev);
|
||||
if (retval) {
|
||||
printk("%s: unable to get IRQ %d (irqval=%d).\n", DRV_NAME,
|
||||
dev->irq, retval);
|
||||
|
新しいイシューから参照
ユーザーをブロックする