Staging: rtl8188eu: Remove braces from single statement block
authorVatika Harlalka <vatikaharlalka@gmail.com>
Fri, 27 Feb 2015 05:55:38 +0000 (11:25 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 Mar 2015 23:17:01 +0000 (15:17 -0800)
Remove braces from single statement if condition
to follow kernel coding convention.

Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/fw.c

index 3b2875481fc5bb7e6819e8fd0e5be105a72dba5b..a71c54295508b05e245b5de1a7dce1105ba0be69 100644 (file)
@@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
                        break;
        } while (counter++ < POLLING_READY_TIMEOUT_COUNT);
 
-       if (counter >= POLLING_READY_TIMEOUT_COUNT) {
+       if (counter >= POLLING_READY_TIMEOUT_COUNT)
                goto exit;
-       }
 
        value32 = usb_read32(adapt, REG_MCUFWDL);
        value32 |= MCUFWDL_RDY;
This page took 0.024886 seconds and 5 git commands to generate.