mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 18:13:26 -04:00
staging: emxx_udc: lines should not end with parenthesis
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
52012642a5
commit
c896c89066
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user