698a89541c
This adds trace support for HNS3 driver. It also declares some events which could be used to trace the events when a TX/RX BD is processed, and other events which are related to the processing of sk_buff, such as TSO, GRO. Signed-off-by: Yunsheng Lin <linyunsheng@huawei.com> Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
349 B
Makefile
17 lines
349 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile for the HISILICON network device drivers.
|
|
#
|
|
|
|
ccflags-y += -I$(srctree)/$(src)
|
|
|
|
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
|