projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d15190
)
iio: light: remove unneeded semicolon
author
Chen Zhou
<chenzhou10@huawei.com>
Mon, 16 Dec 2019 10:51:01 +0000
(18:51 +0800)
committer
Jonathan Cameron
<Jonathan.Cameron@huawei.com>
Sun, 29 Dec 2019 15:20:06 +0000
(15:20 +0000)
Fixes coccicheck warning:
./drivers/iio/light/lm3533-als.c:745:2-3: Unneeded semicolon
Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/lm3533-als.c
patch
|
blob
|
history
diff --git
a/drivers/iio/light/lm3533-als.c
b/drivers/iio/light/lm3533-als.c
index 6733b52c22df92687f6cb44d66df3da04e77b0e0..bc196c21288171a6d89ef5ced4651178369537b4 100644
(file)
--- a/
drivers/iio/light/lm3533-als.c
+++ b/
drivers/iio/light/lm3533-als.c
@@
-742,7
+742,7
@@
static int lm3533_als_set_resistor(struct lm3533_als *als, u8 val)
if (val < LM3533_ALS_RESISTOR_MIN || val > LM3533_ALS_RESISTOR_MAX) {
dev_err(&als->pdev->dev, "invalid resistor value\n");
return -EINVAL;
- }
;
+ }
ret = lm3533_write(als->lm3533, LM3533_REG_ALS_RESISTOR_SELECT, val);
if (ret) {