Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58001eff authored by Fabio Estevam's avatar Fabio Estevam Committed by Peter Chen
Browse files

usb: chipidea: udc: Fit into a single line



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

Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
parent 382c1b38
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;