projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76e8bd0
)
usb: chipdea: core: fix return -EINVAL if request role is the same with current role
author
Xu Yang
<xu.yang_2@nxp.com>
Fri, 17 Mar 2023 06:15:15 +0000
(14:15 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 30 Mar 2023 10:47:57 +0000
(12:47 +0200)
commit
3670de80678961eda7fa2220883fc77c16868951
upstream.
It should not return -EINVAL if the request role is the same with current
role, return non-error and without do anything instead.
Fixes: a932a8041ff9 ("usb: chipidea: core: add sysfs group")
cc: <stable@vger.kernel.org>
Acked-by: Peter Chen <peter.chen@kernel.org>
Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
Link:
https://lore.kernel.org/r/20230317061516.2451728-1-xu.yang_2@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/chipidea/core.c
patch
|
blob
|
history
diff --git
a/drivers/usb/chipidea/core.c
b/drivers/usb/chipidea/core.c
index a56f06368d14248e99cec4f3c49f7f986b5630d7..ba69bdb2a283d3bf933680bf2c70aca5cf9e5b6c 100644
(file)
--- a/
drivers/usb/chipidea/core.c
+++ b/
drivers/usb/chipidea/core.c
@@
-974,9
+974,12
@@
static ssize_t role_store(struct device *dev,
strlen(ci->roles[role]->name)))
break;
- if (role == CI_ROLE_END
|| role == ci->role
)
+ if (role == CI_ROLE_END)
return -EINVAL;
+ if (role == ci->role)
+ return n;
+
pm_runtime_get_sync(dev);
disable_irq(ci->irq);
ci_role_stop(ci);