From: Michael Welling Date: Sun, 23 Mar 2014 16:18:26 +0000 (-0500) Subject: STAGING: cxt1e1: Remove curly braces X-Git-Tag: next-20140428~14^2~273 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4786c87a1ec339ee9383e7f91a0aac2e7799ea67;p=karo-tx-linux.git STAGING: cxt1e1: Remove curly braces Removes unnecessary curly braces from for loop in eeprom_delay. Signed-off-by: Michael Welling Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/cxt1e1/pmc93x6_eeprom.c b/drivers/staging/cxt1e1/pmc93x6_eeprom.c index 615349936314..ba588f1b2110 100644 --- a/drivers/staging/cxt1e1/pmc93x6_eeprom.c +++ b/drivers/staging/cxt1e1/pmc93x6_eeprom.c @@ -133,9 +133,8 @@ static void eeprom_delay(void) { int timeout; - for (timeout = 20; timeout; --timeout) { + for (timeout = 20; timeout; --timeout) OS_uwait_dummy(); - } } /*------------------------------------------------------------------------