1# SPDX-License-Identifier: GPL-2.0 2 3common-objs := enetc.o enetc_cbdr.o enetc_ethtool.o 4 5obj-$(CONFIG_FSL_ENETC) += fsl-enetc.o 6fsl-enetc-y := enetc_pf.o $(common-objs) 7fsl-enetc-$(CONFIG_PCI_IOV) += enetc_msg.o 8fsl-enetc-$(CONFIG_FSL_ENETC_QOS) += enetc_qos.o 9 10obj-$(CONFIG_FSL_ENETC_VF) += fsl-enetc-vf.o 11fsl-enetc-vf-y := enetc_vf.o $(common-objs) 12fsl-enetc-vf-$(CONFIG_FSL_ENETC_QOS) += enetc_qos.o 13 14obj-$(CONFIG_FSL_ENETC_MDIO) += fsl-enetc-mdio.o 15fsl-enetc-mdio-y := enetc_pci_mdio.o enetc_mdio.o 16 17obj-$(CONFIG_FSL_ENETC_PTP_CLOCK) += fsl-enetc-ptp.o 18fsl-enetc-ptp-y := enetc_ptp.o 19