forked from Minki/linux
091a19ea6e
Export detailed driver counters through debugfs. Statistics already available in ethtool are presented in a structured manner. Includes per-core, per-FQ and per-channel statistics. Also transition from module_fsl_mc_driver to explicit module_init/exit in order to create the debugfs directory besides registering the driver. Signed-off-by: Ioana Radulescu <ruxandra.radulescu@nxp.com> Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
418 B
Makefile
15 lines
418 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Freescale DPAA2 Ethernet controller
|
|
#
|
|
|
|
obj-$(CONFIG_FSL_DPAA2_ETH) += fsl-dpaa2-eth.o
|
|
obj-$(CONFIG_FSL_DPAA2_PTP_CLOCK) += fsl-dpaa2-ptp.o
|
|
|
|
fsl-dpaa2-eth-objs := dpaa2-eth.o dpaa2-ethtool.o dpni.o
|
|
fsl-dpaa2-eth-${CONFIG_DEBUG_FS} += dpaa2-eth-debugfs.o
|
|
fsl-dpaa2-ptp-objs := dpaa2-ptp.o dprtc.o
|
|
|
|
# Needed by the tracing framework
|
|
CFLAGS_dpaa2-eth.o := -I$(src)
|