usb/gadget: fsl_qe_udc: convert tasklets to use new tasklet_setup() API

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 <romain.perier@gmail.com>
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
Link: https://lore.kernel.org/r/20200817090209.26351-6-allen.cryptic@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Allen Pais 2020-08-17 14:32:07 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель 6148c10f6b
Коммит f7aa938623
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -923,9 +923,9 @@ static int qe_ep_rxframe_handle(struct qe_ep *ep)
return 0;
}
static void ep_rx_tasklet(unsigned long data)
static void ep_rx_tasklet(struct tasklet_struct *t)
{
struct qe_udc *udc = (struct qe_udc *)data;
struct qe_udc *udc = from_tasklet(udc, t, rx_tasklet);
struct qe_ep *ep;
struct qe_frame *pframe;
struct qe_bd __iomem *bd;
@ -2553,8 +2553,7 @@ static int qe_udc_probe(struct platform_device *ofdev)
DMA_TO_DEVICE);
}
tasklet_init(&udc->rx_tasklet, ep_rx_tasklet,
(unsigned long)udc);
tasklet_setup(&udc->rx_tasklet, ep_rx_tasklet);
/* request irq and disable DR */
udc->usb_irq = irq_of_parse_and_map(np, 0);
if (!udc->usb_irq) {