Przeglądaj źródła

mfd: stmpe: Trivial: Remove unnecessary semicolon

Semicolon is not necessary after the while statement.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Sachin Kamat 12 lat temu
rodzic
commit
52397fe18d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      drivers/mfd/stmpe.c

+ 1 - 1
drivers/mfd/stmpe.c

@@ -706,7 +706,7 @@ static int stmpe1801_reset(struct stmpe *stmpe)
 		if (!(ret & STMPE1801_MSK_SYS_CTRL_RESET))
 			return 0;
 		usleep_range(100, 200);
-	};
+	}
 	return -EIO;
 }