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:
committed by
Jakub Kicinski
parent
c23d544e99
commit
23a64c5146
@@ -553,12 +553,11 @@ tl_sched:
|
||||
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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user