1# SPDX-License-Identifier: GPL-2.0 2obj-$(CONFIG_FSL_ENETC) += fsl-enetc.o 3fsl-enetc-$(CONFIG_FSL_ENETC) += enetc.o enetc_cbdr.o enetc_ethtool.o 4fsl-enetc-$(CONFIG_PCI_IOV) += enetc_msg.o 5fsl-enetc-objs := enetc_pf.o $(fsl-enetc-y) 6 7obj-$(CONFIG_FSL_ENETC_VF) += fsl-enetc-vf.o 8 9ifeq ($(CONFIG_FSL_ENETC)$(CONFIG_FSL_ENETC_VF), yy) 10fsl-enetc-vf-objs := enetc_vf.o 11else 12fsl-enetc-vf-$(CONFIG_FSL_ENETC_VF) += enetc.o enetc_cbdr.o \ 13 enetc_ethtool.o 14fsl-enetc-vf-objs := enetc_vf.o $(fsl-enetc-vf-y) 15endif 16 17obj-$(CONFIG_FSL_ENETC_PTP_CLOCK) += fsl-enetc-ptp.o 18fsl-enetc-ptp-$(CONFIG_FSL_ENETC_PTP_CLOCK) += enetc_ptp.o 19