mfd: stmpe: Trivial: Remove unnecessary semicolon
authorSachin Kamat <sachin.kamat@linaro.org>
Tue, 4 Feb 2014 09:07:13 +0000 (14:37 +0530)
committerLee Jones <lee.jones@linaro.org>
Wed, 19 Mar 2014 08:58:07 +0000 (08:58 +0000)
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>
drivers/mfd/stmpe.c

index 42ccd05..4a91f67 100644 (file)
@@ -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;
 }