staging: emxx_udc: emxx_udc.c {} Single statement blocks
authorWalt Feasel <waltfeasel@gmail.com>
Mon, 21 Nov 2016 15:05:49 +0000 (10:05 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Nov 2016 09:05:38 +0000 (10:05 +0100)
Make suggested checkpatch modification for
WARNING: braces {} are not necessary for single
statement blocks

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c

index de8f065..3a29f38 100644 (file)
@@ -1575,9 +1575,8 @@ static int std_req_get_status(struct nbu2ss_udc *udc)
        u8      ep_adrs;
        int     result = -EINVAL;
 
-       if ((udc->ctrl.wValue != 0x0000) || (direction != USB_DIR_IN)) {
+       if ((udc->ctrl.wValue != 0x0000) || (direction != USB_DIR_IN))
                return result;
-       }
 
        length = min_t(u16, udc->ctrl.wLength, sizeof(status_data));