]> git.dujemihanovic.xyz Git - u-boot.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)
commit9125b4b021d81b72d946a08775d62355a59f6fab
tree29b567a8d7b4856791838f94c1e18e918781c9d4
parent730fc474b1bcf6ae7b79fe02d9c7318778189827
usb: host: ehci-generic: Fix error check

Commit 81755b8c20fe ("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: 81755b8c20fe ("usb: host: ehci-generic: Make resets and clocks optional")
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
drivers/usb/host/ehci-generic.c