diff options
| author | Tom Rini <[email protected]> | 2023-08-09 13:17:34 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-08-09 13:17:34 -0400 |
| commit | ec58228830a1f68e8e65099387cf12c5a91c9e72 (patch) | |
| tree | 391ed6ad5f3fddcb88c976b0d413fa3912e68c40 /drivers/usb | |
| parent | f26eda936bfb49c99d3c7829d416809013b95d3f (diff) | |
| parent | 9234b77b9d42ebd77585091a072b4ab958ba83ed (diff) | |
Merge tag 'x86-pull-20230809' of https://source.denx.de/u-boot/custodians/u-boot-x86
- x86: Fixes for distro booting
- x86: Move some boards to text environment
Diffstat (limited to 'drivers/usb')
| -rw-r--r-- | drivers/usb/host/usb-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/usb-uclass.c b/drivers/usb/host/usb-uclass.c index 02c0138a206..7a03435ba77 100644 --- a/drivers/usb/host/usb-uclass.c +++ b/drivers/usb/host/usb-uclass.c @@ -346,7 +346,7 @@ int usb_init(void) if (controllers_initialized == 0) printf("No working controllers found\n"); - return usb_started ? 0 : -1; + return usb_started ? 0 : -ENOENT; } int usb_setup_ehci_gadget(struct ehci_ctrl **ctlrp) |
