diff options
author | Joe Perches <joe@perches.com> | 2009-11-19 04:30:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-19 15:29:30 -0500 |
commit | 164165dad7e607ec359e64b6fae72abbf3640ea6 (patch) | |
tree | c0db3c2603c07b1c2af6373f25a9032684d625b9 /drivers/net/skge.c | |
parent | 5452fee23eddb5ebb46f13aba50c8930c160e1da (diff) |
drivers/net: tasklet_init - Remove unnecessary leading & from second arg
Changed function pointer use from non-majority address-of style
to majority short form without & via: (was: 8 with &, 36 without)
grep -rPl "\btasklet_init\s*\([^,\)]+,\s*\&" drivers/net | while read file ; do \
perl -i -e 'local $/; while (<>) { s@(\btasklet_init\s*\([^,\)]+,\s*)\&@\1@g ; print ; }' $file ;\
done
Compile tested allyesconfig x86
Signed-off-by: Joe Perches <joe@perches.com>
drivers/net/cnic.c | 4 ++--
drivers/net/jme.c | 10 +++++-----
drivers/net/skge.c | 2 +-
3 files changed, 8 insertions(+), 8 deletions(-)
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/skge.c')
-rw-r--r-- | drivers/net/skge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index ba5eb14094ef..34b4e7d500da 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
@@ -3947,7 +3947,7 @@ static int __devinit skge_probe(struct pci_dev *pdev, | |||
3947 | hw->pdev = pdev; | 3947 | hw->pdev = pdev; |
3948 | spin_lock_init(&hw->hw_lock); | 3948 | spin_lock_init(&hw->hw_lock); |
3949 | spin_lock_init(&hw->phy_lock); | 3949 | spin_lock_init(&hw->phy_lock); |
3950 | tasklet_init(&hw->phy_task, &skge_extirq, (unsigned long) hw); | 3950 | tasklet_init(&hw->phy_task, skge_extirq, (unsigned long) hw); |
3951 | 3951 | ||
3952 | hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000); | 3952 | hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000); |
3953 | if (!hw->regs) { | 3953 | if (!hw->regs) { |