Skip to content

Commit

Permalink
net: usb: hso: use new tasklet API
Browse files Browse the repository at this point in the history
This converts the driver to use the new tasklet API introduced in
commit 12cc923 ("tasklet: Introduce new initialization API")

Signed-off-by: Emil Renner Berthing <kernel@esmil.dk>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Emil Renner Berthing authored and Jakub Kicinski committed Feb 2, 2021
1 parent 64ca5ab commit fb1eb9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/usb/hso.c
Original file line number Diff line number Diff line change
Expand Up @@ -1213,9 +1213,10 @@ static void hso_std_serial_read_bulk_callback(struct urb *urb)
* This needs to be a tasklet otherwise we will
* end up recursively calling this function.
*/
static void hso_unthrottle_tasklet(unsigned long data)
static void hso_unthrottle_tasklet(struct tasklet_struct *t)
{
struct hso_serial *serial = (struct hso_serial *)data;
struct hso_serial *serial = from_tasklet(serial, t,
unthrottle_tasklet);
unsigned long flags;

spin_lock_irqsave(&serial->serial_lock, flags);
Expand Down Expand Up @@ -1264,9 +1265,8 @@ static int hso_serial_open(struct tty_struct *tty, struct file *filp)
serial->rx_state = RX_IDLE;
/* Force default termio settings */
_hso_serial_set_termios(tty, NULL);
tasklet_init(&serial->unthrottle_tasklet,
hso_unthrottle_tasklet,
(unsigned long)serial);
tasklet_setup(&serial->unthrottle_tasklet,
hso_unthrottle_tasklet);
result = hso_start_serial_device(serial->parent, GFP_KERNEL);
if (result) {
hso_stop_serial_device(serial->parent);
Expand Down

0 comments on commit fb1eb9b

Please sign in to comment.