diff options
author | Alexander Graf <agraf@suse.de> | 2018-03-15 15:10:20 +0100 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2018-03-22 15:05:31 -0500 |
commit | f24534307e983d983cc573390f75c76977d57ec6 (patch) | |
tree | 7d941ae5dcf9d63a986ac6c8ec1cfb1bfb8464ab /drivers/usb/eth/Kconfig | |
parent | a532e2f2e52277635fac79cdbe4e6b5b51166de4 (diff) | |
download | u-boot-f24534307e983d983cc573390f75c76977d57ec6.tar.gz u-boot-f24534307e983d983cc573390f75c76977d57ec6.tar.bz2 u-boot-f24534307e983d983cc573390f75c76977d57ec6.zip |
lan7xxx: Require phylib
The lan75xx and lan78xx drivers need to drive their phy via the generic
phylib framework. Let's reflect that dependency in Kconfig, so that we
don't get build errors when phylib does not get selected.
Signed-off-by: Alexander Graf <agraf@suse.de>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers/usb/eth/Kconfig')
-rw-r--r-- | drivers/usb/eth/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/eth/Kconfig b/drivers/usb/eth/Kconfig index 496a6d1933..2f6bfa8e71 100644 --- a/drivers/usb/eth/Kconfig +++ b/drivers/usb/eth/Kconfig @@ -23,6 +23,7 @@ config USB_ETHER_ASIX88179 config USB_ETHER_LAN75XX bool "Microchip LAN75XX support" depends on USB_HOST_ETHER + depends on PHYLIB ---help--- Say Y here if you would like to support Microchip LAN75XX Hi-Speed USB 2.0 to 10/100/1000 Gigabit Ethernet controller. @@ -32,6 +33,7 @@ config USB_ETHER_LAN75XX config USB_ETHER_LAN78XX bool "Microchip LAN78XX support" depends on USB_HOST_ETHER + depends on PHYLIB ---help--- Say Y here if you would like to support Microchip LAN78XX USB 3.1 Gen 1 to 10/100/1000 Gigabit Ethernet controller. |