mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 14:43:46 +07:00
b2292360bb
Add the debugfs framework to the driver and create a debugfs command interface for each device. example command: "echo queue info > cmd" Query the packet forwarding queue information. Signed-off-by: liuzhongzhu <liuzhongzhu@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
315 B
Makefile
15 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile for the HISILICON network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_HNS3) += hns3pf/
|
|
obj-$(CONFIG_HNS3) += hns3vf/
|
|
|
|
obj-$(CONFIG_HNS3) += hnae3.o
|
|
|
|
obj-$(CONFIG_HNS3_ENET) += hns3.o
|
|
hns3-objs = hns3_enet.o hns3_ethtool.o hns3_debugfs.o
|
|
|
|
hns3-$(CONFIG_HNS3_DCB) += hns3_dcbnl.o
|