浏览代码

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>
Michael Welling 11 年之前
父节点
当前提交
4786c87a1e
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      drivers/staging/cxt1e1/pmc93x6_eeprom.c

+ 1 - 2
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();
-	}
 }
 
 /*------------------------------------------------------------------------