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

committed by
David S. Miller

parent
5452fee23e
commit
164165dad7
@@ -3387,7 +3387,7 @@ static int cnic_init_bnx2_irq(struct cnic_dev *dev)
|
||||
|
||||
cp->bnx2_status_blk = cp->status_blk;
|
||||
cp->last_status_idx = cp->bnx2_status_blk->status_idx;
|
||||
tasklet_init(&cp->cnic_irq_task, &cnic_service_bnx2_msix,
|
||||
tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
|
||||
(unsigned long) dev);
|
||||
err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
|
||||
"cnic", dev);
|
||||
@@ -3787,7 +3787,7 @@ static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
|
||||
struct cnic_eth_dev *ethdev = cp->ethdev;
|
||||
int err = 0;
|
||||
|
||||
tasklet_init(&cp->cnic_irq_task, &cnic_service_bnx2x_bh,
|
||||
tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
|
||||
(unsigned long) dev);
|
||||
if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
|
||||
err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
|
||||
|
Reference in New Issue
Block a user