Removes unnecessary curly braces from for loop in eeprom_delay.

Signed-off-by: Michael Welling <mwell...@ieee.org>
---
diff --git a/drivers/staging/cxt1e1/pmc93x6_eeprom.c 
b/drivers/staging/cxt1e1/pmc93x6_eeprom.c
index 6153499..ba588f1 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();
-       }
 }
 
 /*------------------------------------------------------------------------
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to