mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
8880edba06
Adds a class for MDIO MUXes, which control access to a series of downstream child MDIOs. MDIO MUX drivers are required to implement a select function used to switch between child buses. MUX children are registered as MDIO buses and they can be used just like regular MDIOs. 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>
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-y += checksum.o
|
|
obj-$(CONFIG_NET) += arp.o
|
|
obj-$(CONFIG_CMD_BOOTP) += bootp.o
|
|
obj-$(CONFIG_CMD_CDP) += cdp.o
|
|
obj-$(CONFIG_CMD_DNS) += dns.o
|
|
ifdef CONFIG_DM_ETH
|
|
obj-$(CONFIG_NET) += eth-uclass.o
|
|
else
|
|
obj-$(CONFIG_NET) += eth_legacy.o
|
|
endif
|
|
obj-$(CONFIG_DM_MDIO) += mdio-uclass.o
|
|
obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o
|
|
obj-$(CONFIG_NET) += eth_common.o
|
|
obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
|
|
obj-$(CONFIG_NET) += net.o
|
|
obj-$(CONFIG_CMD_NFS) += nfs.o
|
|
obj-$(CONFIG_CMD_PING) += ping.o
|
|
obj-$(CONFIG_CMD_RARP) += rarp.o
|
|
obj-$(CONFIG_CMD_SNTP) += sntp.o
|
|
obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
|
|
obj-$(CONFIG_UDP_FUNCTION_FASTBOOT) += fastboot.o
|
|
obj-$(CONFIG_CMD_WOL) += wol.o
|
|
|
|
# Disable this warning as it is triggered by:
|
|
# sprintf(buf, index ? "foo%d" : "foo", index)
|
|
# and this is intentional usage.
|
|
CFLAGS_eth_common.o += -Wno-format-extra-args
|