mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
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 <marek.vasut+usb@mailbox.org> Signed-off-by: Tom Rini <trini@konsulko.com>
15 lines
333 B
Plaintext
15 lines
333 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
config USB_ISP1760
|
|
bool "NXP ISP 1760/1761/1763 support"
|
|
depends on DM && OF_CONTROL
|
|
select DM_USB
|
|
select REGMAP
|
|
select USB_HOST
|
|
help
|
|
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
|
|
capable bus.
|