From 4786c87a1ec339ee9383e7f91a0aac2e7799ea67 Mon Sep 17 00:00:00 2001 From: Michael Welling Date: Sun, 23 Mar 2014 11:18:26 -0500 Subject: [PATCH] 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 --- drivers/staging/cxt1e1/pmc93x6_eeprom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); - } } /*------------------------------------------------------------------------ -- 2.11.0