mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 21:45:12 +07:00
424eb834a9
Most of the NAPI handling interface, skb buffer management, management of the RX/TX descriptors, ethool interface etc. has quite a bit of code which is common to VF and PF driver. This patch makes the exisitng PF's HNS3 ENET driver as the common ENET driver for both Virtual & Physical Function. This will help in reduction of redundancy and better management of code. Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: lipeng <lipeng321@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
300 B
Makefile
15 lines
300 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-$(CONFIG_HNS3_DCB) += hns3_dcbnl.o
|