net: usb: pegasus: use new tasklet API

This converts the driver to use the new tasklet API introduced in
commit 12cc923f1c ("tasklet: Introduce new initialization API")

Signed-off-by: Emil Renner Berthing <kernel@esmil.dk>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Emil Renner Berthing 2021-01-31 00:47:28 +01:00 committed by Jakub Kicinski
parent c23d544e99
commit 23a64c5146
1 changed files with 3 additions and 4 deletions

View File

@ -553,12 +553,11 @@ static void read_bulk_callback(struct urb *urb)
tasklet_schedule(&pegasus->rx_tl);
}
static void rx_fixup(unsigned long data)
static void rx_fixup(struct tasklet_struct *t)
{
pegasus_t *pegasus;
pegasus_t *pegasus = from_tasklet(pegasus, t, rx_tl);
int status;
pegasus = (pegasus_t *) data;
if (pegasus->flags & PEGASUS_UNPLUG)
return;
@ -1129,7 +1128,7 @@ static int pegasus_probe(struct usb_interface *intf,
goto out1;
}
tasklet_init(&pegasus->rx_tl, rx_fixup, (unsigned long) pegasus);
tasklet_setup(&pegasus->rx_tl, rx_fixup);
INIT_DELAYED_WORK(&pegasus->carrier_check, check_carrier);