From: Fabio Estevam <[email protected]>

No need to split the dma_pool_zalloc() line in two lines as it can
perfectly fit into a single one.

Signed-off-by: Fabio Estevam <[email protected]>
---
Changes since v1:
- Add a missing 'line' in the commit log.

 drivers/usb/chipidea/udc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
index f24d922..336793f 100644
--- a/drivers/usb/chipidea/udc.c
+++ b/drivers/usb/chipidea/udc.c
@@ -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;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to