All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] extcon: Fix return value in extcon_register_interest()
@ 2012-09-25  6:58 Sachin Kamat
  2012-09-25  9:15 ` anish singh
  2012-09-25 10:32 ` Chanwoo Choi
  0 siblings, 2 replies; 6+ messages in thread
From: Sachin Kamat @ 2012-09-25  6:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: myungjoo.ham, cw00.choi, sachin.kamat, patches

Return the value obtained from extcon_find_cable_index()
instead of -ENODEV.

Fixes the following smatch info:
drivers/extcon/extcon-class.c:478 extcon_register_interest() info:
why not propagate 'obj->cable_index' from extcon_find_cable_index()
instead of -19?

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/extcon/extcon-class.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/extcon/extcon-class.c b/drivers/extcon/extcon-class.c
index 946a318..e996800 100644
--- a/drivers/extcon/extcon-class.c
+++ b/drivers/extcon/extcon-class.c
@@ -475,7 +475,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 -ENODEV;
+		return obj->cable_index;
 
 	obj->user_nb = nb;
 
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-09-25 10:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-25  6:58 [PATCH] extcon: Fix return value in extcon_register_interest() Sachin Kamat
2012-09-25  9:15 ` anish singh
2012-09-25  9:20   ` Sachin Kamat
2012-09-25  9:27     ` anish singh
2012-09-25 10:32 ` Chanwoo Choi
2012-09-25 10:44   ` Sachin Kamat

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.