mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
usb: USB_XHCI_PCI depends on PCI
Compiling with CONFIG_USB_XHCI_PCI and CONFIG_PCI=n results in usb/host/xhci-pci.c:48:(.text.xhci_pci_probe+0x44): undefined reference to `dm_pci_write_config32 Add the missing Kconfig dependency. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
6e91df96dc
commit
493e0e2577
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ config USB_XHCI_OMAP
|
||||||
|
|
||||||
config USB_XHCI_PCI
|
config USB_XHCI_PCI
|
||||||
bool "Support for PCI-based xHCI USB controller"
|
bool "Support for PCI-based xHCI USB controller"
|
||||||
depends on DM_USB
|
depends on DM_USB && PCI
|
||||||
default y if X86
|
default y if X86
|
||||||
help
|
help
|
||||||
Enables support for the PCI-based xHCI controller.
|
Enables support for the PCI-based xHCI controller.
|
||||||
|
|
Loading…
Reference in a new issue