Re: [PATCH v2 07/20] ethernet: dlink: convert tasklets to use new tasklet_setup() API

2020-09-09 Thread David Miller
From: Allen Pais Date: Wed, 9 Sep 2020 14:14:57 +0530 > @@ -1312,10 +1311,11 @@ static irqreturn_t intr_handler(int irq, void > *dev_instance) > return IRQ_RETVAL(handled); > } > > -static void rx_poll(unsigned long data) > +static void rx_poll(struct tasklet_struct *t) > { > - st

[PATCH v2 07/20] ethernet: dlink: convert tasklets to use new tasklet_setup() API

2020-09-09 Thread Allen Pais
In preparation for unconditionally passing the struct tasklet_struct pointer to all tasklet callbacks, switch to using the new tasklet_setup() and from_tasklet() to pass the tasklet pointer explicitly. Signed-off-by: Romain Perier Signed-off-by: Allen Pais --- drivers/net/ethernet/dlink/sundanc