]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
staging: emxx_udc: lines should not end with parenthesis
authorPayal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Thu, 21 Mar 2019 11:40:04 +0000 (17:10 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 21 Mar 2019 18:59:50 +0000 (19:59 +0100)
Adjust code to meet the style of “lines should not end with
parenthesis”.

Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c

index b960a21669782df27160bdbeca78fc86c1a1f1a4..743a51914d70c02b2c00e6f9493e91dc0994981c 100644 (file)
@@ -459,22 +459,22 @@ static void _nbu2ss_dma_map_single(struct nbu2ss_udc *udc,
                if (req->unaligned) {
                        req->req.dma = ep->phys_buf;
                } else {
-                       req->req.dma = dma_map_single(
-                               udc->gadget.dev.parent,
-                               req->req.buf,
-                               req->req.length,
-                               (direct == USB_DIR_IN)
-                               ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
+                       req->req.dma = dma_map_single(udc->gadget.dev.parent,
+                                                     req->req.buf,
+                                                     req->req.length,
+                                                     (direct == USB_DIR_IN)
+                                                     ? DMA_TO_DEVICE
+                                                     : DMA_FROM_DEVICE);
                }
                req->mapped = 1;
        } else {
                if (!req->unaligned)
-                       dma_sync_single_for_device(
-                               udc->gadget.dev.parent,
-                               req->req.dma,
-                               req->req.length,
-                               (direct == USB_DIR_IN)
-                               ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
+                       dma_sync_single_for_device(udc->gadget.dev.parent,
+                                                  req->req.dma,
+                                                  req->req.length,
+                                                  (direct == USB_DIR_IN)
+                                                  ? DMA_TO_DEVICE
+                                                  : DMA_FROM_DEVICE);
 
                req->mapped = 0;
        }
@@ -1414,8 +1414,8 @@ static inline int _nbu2ss_req_feature(struct nbu2ss_udc *udc, bool bset)
                        if (selector == USB_ENDPOINT_HALT) {
                                ep_adrs = wIndex & 0xFF;
                                if (!bset) {
-                                       _nbu2ss_endpoint_toggle_reset(
-                                               udc, ep_adrs);
+                                       _nbu2ss_endpoint_toggle_reset(udc,
+                                                                     ep_adrs);
                                }
 
                                _nbu2ss_set_endpoint_stall(udc, ep_adrs, bset);
@@ -2594,9 +2594,9 @@ static int nbu2ss_ep_queue(struct usb_ep *_ep,
 
        if (req->unaligned) {
                if (!ep->virt_buf)
-                       ep->virt_buf = dma_alloc_coherent(
-                               NULL, PAGE_SIZE,
-                               &ep->phys_buf, GFP_ATOMIC | GFP_DMA);
+                       ep->virt_buf = dma_alloc_coherent(NULL, PAGE_SIZE,
+                                                         &ep->phys_buf,
+                                                         GFP_ATOMIC | GFP_DMA);
                if (ep->epnum > 0)  {
                        if (ep->direct == USB_DIR_IN)
                                memcpy(ep->virt_buf, req->req.buf,