diff options
| author | Tom Rini <[email protected]> | 2026-03-16 19:24:16 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-30 16:59:35 -0600 |
| commit | bdbe24b2a27c47e854a8ddfe89bffa0e609c24eb (patch) | |
| tree | 4e992d08a75fd1bc2555212f0b0f50b71822a5f8 | |
| parent | 2ee6606f3576d017ce2b914b3d4f858de562bebe (diff) | |
usb: isp1760: Correct dependencies for USB_ISP1760
As exposed by "make randconfig", we have an issue with the dependencies
for USB_ISP1760. It depends on DM && OF_CONTROL being set and
functionally requires REGMAP. As part of fixing that issue, we change
"tristate" to "bool" and remove mentions of module support as that's not
a thing in U-Boot.
Reviewed-by: Marek Vasut <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | drivers/usb/isp1760/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/usb/isp1760/Kconfig b/drivers/usb/isp1760/Kconfig index 993d71e74cd..d1c5a687d9e 100644 --- a/drivers/usb/isp1760/Kconfig +++ b/drivers/usb/isp1760/Kconfig @@ -1,11 +1,13 @@ # SPDX-License-Identifier: GPL-2.0 config USB_ISP1760 - tristate "NXP ISP 1760/1761/1763 support" + bool "NXP ISP 1760/1761/1763 support" + depends on DM && OF_CONTROL select DM_USB + select REGMAP select USB_HOST help - Say Y or M here if your system as an ISP1760/1761/1763 USB host + Say Y here if your system as an ISP1760/1761/1763 USB host controller. This USB controller is usually attached to a non-DMA-Master |
