diff options
author | Alex Marginean | 2019-06-03 19:10:30 +0300 |
---|---|---|
committer | Joe Hershberger | 2019-07-15 13:32:25 -0500 |
commit | c3452b50c3aaa0db2bb0bc68039fed4d40bedbc0 (patch) | |
tree | f584c2b6965a2c920697f7c913790508af74da9f /net/Makefile | |
parent | 149468699e8f631f69d55b5c86b430824fc32d69 (diff) |
net: introduce MDIO DM class for MDIO devices
Adds UCLASS_MDIO DM class supporting MDIO buses that are probed as
stand-alone devices. Useful in particular for systems that support
DM_ETH and have a stand-alone MDIO hardware block shared by multiple
Ethernet interfaces.
Signed-off-by: Alex Marginean <alexm.osslist@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index ce363621685..6251ff39915 100644 --- a/net/Makefile +++ b/net/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_NET) += eth-uclass.o else obj-$(CONFIG_NET) += eth_legacy.o endif +obj-$(CONFIG_DM_MDIO) += mdio-uclass.o obj-$(CONFIG_NET) += eth_common.o obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o obj-$(CONFIG_NET) += net.o |