diff options
author | Joe Perches <joe@perches.com> | 2009-11-19 04:55:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-19 15:29:27 -0500 |
commit | 5452fee23eddb5ebb46f13aba50c8930c160e1da (patch) | |
tree | 276fc89f0d85b63f8292c918266666dc691f6b43 /drivers/isdn/gigaset/bas-gigaset.c | |
parent | 386e50cc7d82b3799ea6f53267f04f123ae05afe (diff) |
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: Joe 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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/gigaset/bas-gigaset.c')
-rw-r--r-- | drivers/isdn/gigaset/bas-gigaset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/gigaset/bas-gigaset.c b/drivers/isdn/gigaset/bas-gigaset.c index 9fd19db045fb..95ebc5129895 100644 --- a/drivers/isdn/gigaset/bas-gigaset.c +++ b/drivers/isdn/gigaset/bas-gigaset.c | |||
@@ -2117,7 +2117,7 @@ static int gigaset_initbcshw(struct bc_state *bcs) | |||
2117 | return 0; | 2117 | return 0; |
2118 | } | 2118 | } |
2119 | tasklet_init(&ubc->sent_tasklet, | 2119 | tasklet_init(&ubc->sent_tasklet, |
2120 | &write_iso_tasklet, (unsigned long) bcs); | 2120 | write_iso_tasklet, (unsigned long) bcs); |
2121 | 2121 | ||
2122 | spin_lock_init(&ubc->isoinlock); | 2122 | spin_lock_init(&ubc->isoinlock); |
2123 | for (i = 0; i < BAS_INURBS; ++i) | 2123 | for (i = 0; i < BAS_INURBS; ++i) |
@@ -2138,7 +2138,7 @@ static int gigaset_initbcshw(struct bc_state *bcs) | |||
2138 | ubc->shared0s = 0; | 2138 | ubc->shared0s = 0; |
2139 | ubc->stolen0s = 0; | 2139 | ubc->stolen0s = 0; |
2140 | tasklet_init(&ubc->rcvd_tasklet, | 2140 | tasklet_init(&ubc->rcvd_tasklet, |
2141 | &read_iso_tasklet, (unsigned long) bcs); | 2141 | read_iso_tasklet, (unsigned long) bcs); |
2142 | return 1; | 2142 | return 1; |
2143 | } | 2143 | } |
2144 | 2144 | ||