projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
824a1bc
)
extcon: Fix return value in extcon_register_interest()
author
Sachin Kamat
<sachin.kamat@linaro.org>
Tue, 25 Sep 2012 23:10:03 +0000
(08:10 +0900)
committer
MyungJoo Ham
<myungjoo.ham@samsung.com>
Tue, 23 Oct 2012 07:32:13 +0000
(16:32 +0900)
Propagate the value returned from extcon_find_cable_index()
instead of -ENODEV. For readability, -EINVAL is returned in place of
the variable.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/extcon/extcon-class.c
patch
|
blob
|
history
diff --git
a/drivers/extcon/extcon-class.c
b/drivers/extcon/extcon-class.c
index 54dc00b7b9f682242b2cd70bb266c4f2054fb4c6..79f5dbae01472d30f073a4d63a0bd696185bd685 100644
(file)
--- a/
drivers/extcon/extcon-class.c
+++ b/
drivers/extcon/extcon-class.c
@@
-469,7
+469,7
@@
int extcon_register_interest(struct extcon_specific_cable_nb *obj,
obj->cable_index = extcon_find_cable_index(obj->edev, cable_name);
if (obj->cable_index < 0)
- return -E
NODEV
;
+ return -E
INVAL
;
obj->user_nb = nb;