提交 5452fee2 编写于 作者: J Joe Perches 提交者: David S. Miller

drivers/isdn/gigaset: tasklet_init - Remove unnecessary leading & from second arg

Changed function pointer use from non-majority address-of style
to majority short form without & via:

grep -rPl "\btasklet_init\s*\([^,\)]+,\s*\&" drivers/isdn | 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: NJoe Perches <joe@perches.com>

 drivers/isdn/gigaset/bas-gigaset.c |    4 ++--
 drivers/isdn/gigaset/common.c      |    2 +-
 drivers/isdn/gigaset/interface.c   |    2 +-
 drivers/isdn/gigaset/ser-gigaset.c |    2 +-
 drivers/isdn/gigaset/usb-gigaset.c |    2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 386e50cc
...@@ -2117,7 +2117,7 @@ static int gigaset_initbcshw(struct bc_state *bcs) ...@@ -2117,7 +2117,7 @@ static int gigaset_initbcshw(struct bc_state *bcs)
return 0; return 0;
} }
tasklet_init(&ubc->sent_tasklet, tasklet_init(&ubc->sent_tasklet,
&write_iso_tasklet, (unsigned long) bcs); write_iso_tasklet, (unsigned long) bcs);
spin_lock_init(&ubc->isoinlock); spin_lock_init(&ubc->isoinlock);
for (i = 0; i < BAS_INURBS; ++i) for (i = 0; i < BAS_INURBS; ++i)
...@@ -2138,7 +2138,7 @@ static int gigaset_initbcshw(struct bc_state *bcs) ...@@ -2138,7 +2138,7 @@ static int gigaset_initbcshw(struct bc_state *bcs)
ubc->shared0s = 0; ubc->shared0s = 0;
ubc->stolen0s = 0; ubc->stolen0s = 0;
tasklet_init(&ubc->rcvd_tasklet, tasklet_init(&ubc->rcvd_tasklet,
&read_iso_tasklet, (unsigned long) bcs); read_iso_tasklet, (unsigned long) bcs);
return 1; return 1;
} }
......
...@@ -727,7 +727,7 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels, ...@@ -727,7 +727,7 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
cs->ev_tail = 0; cs->ev_tail = 0;
cs->ev_head = 0; cs->ev_head = 0;
tasklet_init(&cs->event_tasklet, &gigaset_handle_event, tasklet_init(&cs->event_tasklet, gigaset_handle_event,
(unsigned long) cs); (unsigned long) cs);
cs->commands_pending = 0; cs->commands_pending = 0;
cs->cur_at_seq = 0; cs->cur_at_seq = 0;
......
...@@ -584,7 +584,7 @@ void gigaset_if_init(struct cardstate *cs) ...@@ -584,7 +584,7 @@ void gigaset_if_init(struct cardstate *cs)
if (!drv->have_tty) if (!drv->have_tty)
return; return;
tasklet_init(&cs->if_wake_tasklet, &if_wake, (unsigned long) cs); tasklet_init(&cs->if_wake_tasklet, if_wake, (unsigned long) cs);
mutex_lock(&cs->mutex); mutex_lock(&cs->mutex);
cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL); cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL);
......
...@@ -434,7 +434,7 @@ static int gigaset_initcshw(struct cardstate *cs) ...@@ -434,7 +434,7 @@ static int gigaset_initcshw(struct cardstate *cs)
dev_set_drvdata(&cs->hw.ser->dev.dev, cs); dev_set_drvdata(&cs->hw.ser->dev.dev, cs);
tasklet_init(&cs->write_tasklet, tasklet_init(&cs->write_tasklet,
&gigaset_modem_fill, (unsigned long) cs); gigaset_modem_fill, (unsigned long) cs);
return 1; return 1;
} }
......
...@@ -614,7 +614,7 @@ static int gigaset_initcshw(struct cardstate *cs) ...@@ -614,7 +614,7 @@ static int gigaset_initcshw(struct cardstate *cs)
ucs->bulk_out_urb = NULL; ucs->bulk_out_urb = NULL;
ucs->read_urb = NULL; ucs->read_urb = NULL;
tasklet_init(&cs->write_tasklet, tasklet_init(&cs->write_tasklet,
&gigaset_modem_fill, (unsigned long) cs); gigaset_modem_fill, (unsigned long) cs);
return 1; return 1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册