usb: chipidea: udc: Fit into a single line
authorFabio Estevam <fabio.estevam@nxp.com>
Thu, 8 Sep 2016 12:34:31 +0000 (09:34 -0300)
committerPeter Chen <peter.chen@nxp.com>
Wed, 14 Sep 2016 02:58:13 +0000 (10:58 +0800)
No need to split the dma_pool_zalloc() line into two as it can
perfectly fit into a single line.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
drivers/usb/chipidea/udc.c

index a0b208d..22534a1 100644 (file)
@@ -350,8 +350,7 @@ static int add_td_to_list(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq,
        if (node == NULL)
                return -ENOMEM;
 
-       node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC,
-                                  &node->dma);
+       node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC, &node->dma);
        if (node->ptr == NULL) {
                kfree(node);
                return -ENOMEM;