aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-11-20 02:30:31 -0500
committerMyungJoo Ham <myungjoo.ham@samsung.com>2012-11-21 06:00:39 -0500
commitc0c078c363a578543826bb8bfc9af47c7cc9321b (patch)
treedb78ad019689f7b0eade9976fff1362f90878daa /drivers/extcon
parentd851718f65d646c5033a28fa60631440c6dc0d4f (diff)
extcon: Fix return value in extcon-class.c
Return the value obtained from the function extcon_register_interest instead of -ENODEV. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-class.c b/drivers/extcon/extcon-class.c
index d398821097f3..60adc04b0561 100644
--- a/drivers/extcon/extcon-class.c
+++ b/drivers/extcon/extcon-class.c
@@ -472,7 +472,7 @@ int extcon_register_interest(struct extcon_specific_cable_nb *obj,
472 472
473 obj->cable_index = extcon_find_cable_index(obj->edev, cable_name); 473 obj->cable_index = extcon_find_cable_index(obj->edev, cable_name);
474 if (obj->cable_index < 0) 474 if (obj->cable_index < 0)
475 return -ENODEV; 475 return obj->cable_index;
476 476
477 obj->user_nb = nb; 477 obj->user_nb = nb;
478 478