public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: chipidea: debug: check before accessing ci_role
@ 2017-05-18 14:14 Michael Thalmeier
  2017-05-19  0:57 ` Peter Chen
  2017-05-19  1:15 ` Peter Chen
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Thalmeier @ 2017-05-18 14:14 UTC (permalink / raw)
  To: Peter Chen, Greg Kroah-Hartman; +Cc: linux-usb, linux-kernel, michael

ci_role BUGs when the role is >= CI_ROLE_END.

Signed-off-by: Michael Thalmeier <michael.thalmeier@hale.at>
---
 drivers/usb/chipidea/debug.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/chipidea/debug.c b/drivers/usb/chipidea/debug.c
index 6d23eed..1c31e8a 100644
--- a/drivers/usb/chipidea/debug.c
+++ b/drivers/usb/chipidea/debug.c
@@ -294,7 +294,8 @@ static int ci_role_show(struct seq_file *s, void *data)
 {
 	struct ci_hdrc *ci = s->private;
 
-	seq_printf(s, "%s\n", ci_role(ci)->name);
+	if (ci->role != CI_ROLE_END)
+		seq_printf(s, "%s\n", ci_role(ci)->name);
 
 	return 0;
 }
-- 
2.9.2

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

end of thread, other threads:[~2017-05-19  8:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-18 14:14 [PATCH] usb: chipidea: debug: check before accessing ci_role Michael Thalmeier
2017-05-19  0:57 ` Peter Chen
2017-05-19  1:15 ` Peter Chen
2017-05-19  8:14   ` Michael Thalmeier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox