projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ccc07b
)
i2c: at91_i2c: Change error return -ENODEV to -EINVAL
author
Wenyou Yang
<wenyou.yang@atmel.com>
Tue, 27 Sep 2016 03:00:32 +0000
(11:00 +0800)
committer
Andreas Bießmann
<andreas@biessmann.org>
Fri, 28 Oct 2016 16:37:14 +0000
(18:37 +0200)
Change the error return value -ENODEV from to -EINVAL for more
reasonable.
Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
drivers/i2c/at91_i2c.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/at91_i2c.c
b/drivers/i2c/at91_i2c.c
index
dcd3ce8
..
4bc54ee
100644
(file)
--- a/
drivers/i2c/at91_i2c.c
+++ b/
drivers/i2c/at91_i2c.c
@@
-190,7
+190,7
@@
static int at91_i2c_enable_clk(struct udevice *dev)
clk_rate = clk_get_rate(&clk);
if (!clk_rate)
- return -E
NODEV
;
+ return -E
INVAL
;
bus->bus_clk_rate = clk_rate;