mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 19:25:27 +07:00
837f08fdec
This patch adds a basic driver framework for the Intel(R) E800 Ethernet Series of network devices. There is no functionality right now other than the ability to load. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
18 lines
444 B
Makefile
18 lines
444 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Intel network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_E100) += e100.o
|
|
obj-$(CONFIG_E1000) += e1000/
|
|
obj-$(CONFIG_E1000E) += e1000e/
|
|
obj-$(CONFIG_IGB) += igb/
|
|
obj-$(CONFIG_IGBVF) += igbvf/
|
|
obj-$(CONFIG_IXGBE) += ixgbe/
|
|
obj-$(CONFIG_IXGBEVF) += ixgbevf/
|
|
obj-$(CONFIG_I40E) += i40e/
|
|
obj-$(CONFIG_IXGB) += ixgb/
|
|
obj-$(CONFIG_I40EVF) += i40evf/
|
|
obj-$(CONFIG_FM10K) += fm10k/
|
|
obj-$(CONFIG_ICE) += ice/
|