]> git.baikalelectronics.ru Git - uboot.git/commit
usb: host: ehci-generic: Fix error check
authorAndre Przywara <andre.przywara@arm.com>
Sat, 2 Jul 2022 00:45:10 +0000 (01:45 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 4 Jul 2022 12:00:36 +0000 (08:00 -0400)
commit07bed7d38eb952ec2e66d94ac40a7bbcc3592cd9
tree29b567a8d7b4856791838f94c1e18e918781c9d4
parentfbed393b8aa2e07d656506b372eb7df52539a389
usb: host: ehci-generic: Fix error check

Commit b38a0ac9f2ee ("usb: host: ehci-generic: Make resets and clocks
optional") improved the error check to cover the reset property being
optional. However this was using the wrong error variable for the
check, so would now never fail.

Use the correct error variable for checking the result of
reset_get_bulk(), to actually report genuine errors.

Fixes: b38a0ac9f2ee ("usb: host: ehci-generic: Make resets and clocks optional")
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
drivers/usb/host/ehci-generic.c