Browse Source

STAGING: cxt1e1: Remove curly braces

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>
Michael Welling 11 years ago
parent
commit
4786c87a1e
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/staging/cxt1e1/pmc93x6_eeprom.c

+ 1 - 2
drivers/staging/cxt1e1/pmc93x6_eeprom.c

@@ -133,9 +133,8 @@ static void eeprom_delay(void)
 {
 {
 	int timeout;
 	int timeout;
 
 
-	for (timeout = 20; timeout; --timeout) {
+	for (timeout = 20; timeout; --timeout)
 		OS_uwait_dummy();
 		OS_uwait_dummy();
-	}
 }
 }
 
 
 /*------------------------------------------------------------------------
 /*------------------------------------------------------------------------