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>
This commit is contained in:
parent
eef74d4aaa
commit
4786c87a1e
|
@ -133,9 +133,8 @@ static void eeprom_delay(void)
|
|||
{
|
||||
int timeout;
|
||||
|
||||
for (timeout = 20; timeout; --timeout) {
|
||||
for (timeout = 20; timeout; --timeout)
|
||||
OS_uwait_dummy();
|
||||
}
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue