]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
STAGING: cxt1e1: Remove curly braces
authorMichael Welling <mwelling@ieee.org>
Sun, 23 Mar 2014 16:18:26 +0000 (11:18 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Apr 2014 22:58:32 +0000 (15:58 -0700)
Removes unnecessary curly braces from for loop in eeprom_delay.

Signed-off-by: Michael Welling <mwelling@ieee.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/cxt1e1/pmc93x6_eeprom.c

index 6153499363143664909383da75ff54a9cca08b6f..ba588f1b211062f996fefe564efa295f9088faa1 100644 (file)
@@ -133,9 +133,8 @@ static void eeprom_delay(void)
 {
        int timeout;
 
-       for (timeout = 20; timeout; --timeout) {
+       for (timeout = 20; timeout; --timeout)
                OS_uwait_dummy();
-       }
 }
 
 /*------------------------------------------------------------------------