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>
This commit is contained in:
Sachin Kamat 2014-02-04 14:37:13 +05:30 committed by Lee Jones
parent 44b4dc6163
commit 52397fe18d

View File

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