mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-28 16:53:49 +00:00
usb: core: hcd: only check primary hcd skip_phy_initialization
Before commit53a2d95df8
("usb: core: add phy notify connect and disconnect"), phy initialization will be skipped even when shared hcd doesn't set skip_phy_initialization flag. However, the situation is changed after the commit. The hcd.c will initialize phy when add shared hcd. This behavior is unexpected for some platforms which will handle phy initialization by themselves. To avoid the issue, this will only check skip_phy_initialization flag of primary hcd since shared hcd normally follow primary hcd setting. Fixes:53a2d95df8
("usb: core: add phy notify connect and disconnect") Cc: stable@vger.kernel.org Signed-off-by: Xu Yang <xu.yang_2@nxp.com> Link: https://lore.kernel.org/r/20241105090120.2438366-1-xu.yang_2@nxp.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8293705696
commit
d2ec94fbc4
@ -2794,8 +2794,14 @@ int usb_add_hcd(struct usb_hcd *hcd,
|
||||
int retval;
|
||||
struct usb_device *rhdev;
|
||||
struct usb_hcd *shared_hcd;
|
||||
int skip_phy_initialization;
|
||||
|
||||
if (!hcd->skip_phy_initialization) {
|
||||
if (usb_hcd_is_primary_hcd(hcd))
|
||||
skip_phy_initialization = hcd->skip_phy_initialization;
|
||||
else
|
||||
skip_phy_initialization = hcd->primary_hcd->skip_phy_initialization;
|
||||
|
||||
if (!skip_phy_initialization) {
|
||||
if (usb_hcd_is_primary_hcd(hcd)) {
|
||||
hcd->phy_roothub = usb_phy_roothub_alloc(hcd->self.sysdev);
|
||||
if (IS_ERR(hcd->phy_roothub))
|
||||
|
Loading…
Reference in New Issue
Block a user