]> git.baikalelectronics.ru Git - kernel.git/commit
usb: dwc3: Remove the checks of -ENOSYS
authorKushagra Verma <kushagra765@outlook.com>
Fri, 3 Jun 2022 08:22:15 +0000 (13:52 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Jun 2022 09:22:44 +0000 (11:22 +0200)
commit6f842f3560c38fae955631d76786bddc3e25d1fe
tree612896b15a0c98a578aa7d23c923de33d0e0041e
parent24d5a22dcf33d37c642c0fe2cd991438c8f31a31
usb: dwc3: Remove the checks of -ENOSYS

Commit d09ecd33affd0 ("usb: dwc3: adapt dwc3 core to use Generic PHY
Framework") added if statements that check 'ret == -ENOSYS || ret ==
-ENODEV', but the function phy_get() which is called by devm_phy_get()
returns the phy driver or -ENODEV if the phy driver was not found. So,
remove the check of -ENOSYS in the if statements.

Signed-off-by: Kushagra Verma <kushagra765@outlook.com>
Link: https://lore.kernel.org/r/HK0PR01MB2801E19D4FE569545BB7592DF8A19@HK0PR01MB2801.apcprd01.prod.exchangelabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/core.c