projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
313e8b5
)
leds: lp5523: Fix return value
author
Sachin Kamat
<sachin.kamat@linaro.org>
Tue, 20 Nov 2012 09:59:01 +0000
(
01:59
-0800)
committer
Bryan Wu
<cooloney@gmail.com>
Mon, 26 Nov 2012 22:43:55 +0000
(14:43 -0800)
Return the value obtained from i2c_smbus_read_byte_data() instead of
-EIO. Silences the following smatch warning:
drivers/leds/leds-lp5523.c:174 lp5523_read() info:
why not propagate 'ret' from i2c_smbus_read_byte_data() instead of -5?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
drivers/leds/leds-lp5523.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-lp5523.c
b/drivers/leds/leds-lp5523.c
index 59ec383900de2e403bdd8c261fc7ccdba4933255..eb89cbd419cabe898ec7e47cf3cfb075bb67403f 100644
(file)
--- a/
drivers/leds/leds-lp5523.c
+++ b/
drivers/leds/leds-lp5523.c
@@
-171,7
+171,7
@@
static int lp5523_read(struct i2c_client *client, u8 reg, u8 *buf)
s32 ret = i2c_smbus_read_byte_data(client, reg);
if (ret < 0)
- return
-EIO
;
+ return
ret
;
*buf = ret;
return 0;