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

parent
2939e27599
commit
a0607fd3a2
@@ -984,7 +984,7 @@ static int __devinit s6gmac_probe(struct platform_device *pdev)
|
||||
pd->rx_dma = DMA_MASK_DMAC(i);
|
||||
pd->rx_chan = DMA_INDEX_CHNL(i);
|
||||
pd->io = platform_get_resource(pdev, IORESOURCE_IO, 0)->start;
|
||||
res = request_irq(dev->irq, &s6gmac_interrupt, 0, dev->name, dev);
|
||||
res = request_irq(dev->irq, s6gmac_interrupt, 0, dev->name, dev);
|
||||
if (res) {
|
||||
printk(KERN_ERR DRV_PRMT "irq request failed: %d\n", dev->irq);
|
||||
goto errirq;
|
||||
|
Reference in New Issue
Block a user