staging: emxx_udc: Balance "else" parenthesis
authorAlexis Lothoré <alexis.lothore@gmail.com>
Wed, 10 May 2017 17:39:42 +0000 (19:39 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 May 2017 05:42:00 +0000 (07:42 +0200)
Add missing parenthesis for else statement

Signed-off-by: Alexis Lothoré <alexis.lothore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c

index 82f2c11..14db5f7 100644 (file)
@@ -526,12 +526,13 @@ static void _nbu2ss_dma_unmap_single(
                        if (direct == USB_DIR_OUT)
                                memcpy(req->req.buf, ep->virt_buf,
                                       req->req.actual & 0xfffffffc);
-               } else
+               } else {
                        dma_unmap_single(udc->gadget.dev.parent,
                                         req->req.dma, req->req.length,
                                (direct == USB_DIR_IN)
                                ? DMA_TO_DEVICE
                                : DMA_FROM_DEVICE);
+               }
                req->req.dma = DMA_ADDR_INVALID;
                req->mapped = 0;
        } else {