Commit 4786c87a authored by Michael Welling's avatar Michael Welling Committed by Greg Kroah-Hartman

STAGING: cxt1e1: Remove curly braces

Removes unnecessary curly braces from for loop in eeprom_delay.
Signed-off-by: default avatarMichael Welling <mwelling@ieee.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent eef74d4a
...@@ -133,9 +133,8 @@ static void eeprom_delay(void) ...@@ -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();
}
} }
/*------------------------------------------------------------------------ /*------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment