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:
Michael Welling 2014-03-23 11:18:26 -05:00 committed by Greg Kroah-Hartman
parent eef74d4aaa
commit 4786c87a1e

View 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();
}
}
/*------------------------------------------------------------------------