diff options
author | Tom Rini <trini@konsulko.com> | 2022-03-18 08:38:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-25 12:01:15 +0000 |
commit | cc386f161c3bd63c8370444df49d9fc36b60e403 (patch) | |
tree | 4b21f1912213c7ebdd81e9328a38d3425fff6717 /cmd/Kconfig | |
parent | 16199a8b961fab60587011e9da5a592b94d3eaf4 (diff) | |
download | u-boot-cc386f161c3bd63c8370444df49d9fc36b60e403.tar.gz u-boot-cc386f161c3bd63c8370444df49d9fc36b60e403.tar.bz2 u-boot-cc386f161c3bd63c8370444df49d9fc36b60e403.zip |
Convert CONFIG_MII_INIT to Kconfig
This converts the following to Kconfig:
CONFIG_MII_INIT
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 564daa7bbc..25c9fde4a7 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1658,6 +1658,10 @@ config CMD_MII to management parameters and services. The interface is referred to as the MII management interface. +config MII_INIT + bool "Call mii_init() in the mii command" + depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC) + config CMD_MDIO bool "mdio" depends on PHYLIB |