Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171767
b: refs/heads/master
c: 5452fee
h: refs/heads/master
i:
  171765: 30fb859
  171763: 5ab7d2f
  171759: dbbb20e
v: v3
  • Loading branch information
Joe Perches authored and David S. Miller committed Nov 19, 2009
1 parent 869e65e commit e3b6436
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 386e50cc7d82b3799ea6f53267f04f123ae05afe
refs/heads/master: 5452fee23eddb5ebb46f13aba50c8930c160e1da
4 changes: 2 additions & 2 deletions trunk/drivers/isdn/gigaset/bas-gigaset.c
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ static int gigaset_initbcshw(struct bc_state *bcs)
return 0;
}
tasklet_init(&ubc->sent_tasklet,
&write_iso_tasklet, (unsigned long) bcs);
write_iso_tasklet, (unsigned long) bcs);

spin_lock_init(&ubc->isoinlock);
for (i = 0; i < BAS_INURBS; ++i)
Expand All @@ -2138,7 +2138,7 @@ static int gigaset_initbcshw(struct bc_state *bcs)
ubc->shared0s = 0;
ubc->stolen0s = 0;
tasklet_init(&ubc->rcvd_tasklet,
&read_iso_tasklet, (unsigned long) bcs);
read_iso_tasklet, (unsigned long) bcs);
return 1;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/gigaset/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
cs->ev_tail = 0;
cs->ev_head = 0;

tasklet_init(&cs->event_tasklet, &gigaset_handle_event,
tasklet_init(&cs->event_tasklet, gigaset_handle_event,
(unsigned long) cs);
cs->commands_pending = 0;
cs->cur_at_seq = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/gigaset/interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ void gigaset_if_init(struct cardstate *cs)
if (!drv->have_tty)
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);
cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/gigaset/ser-gigaset.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ static int gigaset_initcshw(struct cardstate *cs)
dev_set_drvdata(&cs->hw.ser->dev.dev, cs);

tasklet_init(&cs->write_tasklet,
&gigaset_modem_fill, (unsigned long) cs);
gigaset_modem_fill, (unsigned long) cs);
return 1;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/gigaset/usb-gigaset.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ static int gigaset_initcshw(struct cardstate *cs)
ucs->bulk_out_urb = NULL;
ucs->read_urb = NULL;
tasklet_init(&cs->write_tasklet,
&gigaset_modem_fill, (unsigned long) cs);
gigaset_modem_fill, (unsigned long) cs);

return 1;
}
Expand Down

0 comments on commit e3b6436

Please sign in to comment.