Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5404b0c0 authored by Michael Thalmeier's avatar Michael Thalmeier Committed by Greg Kroah-Hartman
Browse files

usb: chipidea: debug: check before accessing ci_role



commit 0340ff83cd4475261e7474033a381bc125b45244 upstream.

ci_role BUGs when the role is >= CI_ROLE_END.

Signed-off-by: default avatarMichael Thalmeier <michael.thalmeier@hale.at>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 59db536f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -294,6 +294,7 @@ static int ci_role_show(struct seq_file *s, void *data)
{
	struct ci_hdrc *ci = s->private;

	if (ci->role != CI_ROLE_END)
		seq_printf(s, "%s\n", ci_role(ci)->name);

	return 0;