projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44b4dc6
)
mfd: stmpe: Trivial: Remove unnecessary semicolon
author
Sachin Kamat
<sachin.kamat@linaro.org>
Tue, 4 Feb 2014 09:07:13 +0000
(14:37 +0530)
committer
Lee 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
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/stmpe.c
b/drivers/mfd/stmpe.c
index 42ccd05445133444e52be15c4d380de7b4915539..4a91f6771fb82da541868250a6f85ccd76d24abd 100644
(file)
--- a/
drivers/mfd/stmpe.c
+++ b/
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;
}