mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 11:26:43 +07:00
a88394cfb5
Move the DEC - Tulip driver into drivers/net/ethernet/dec/tulip/ and make the necessary Kconfig and Makefile changes. The Digital Equioment (DEC) driver ewrk3 was moved into drivers/net/ethernet/dec/ and the remaining drivers (Tulip) were moved into drivers/net/ethernet/dec/tulip/ CC: Tobias Ringstrom <tori@unhappy.mine.nu> CC: Grant Grundler <grundler@parisc-linux.org> CC: David Davies <davies@maniac.ultranet.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Acked-by: Grant Grundler <grundler@parisc-linux.org>
20 lines
503 B
Makefile
20 lines
503 B
Makefile
#
|
|
# Makefile for the Linux "Tulip" family network device drivers.
|
|
#
|
|
|
|
ccflags-$(CONFIG_NET_TULIP) := -DDEBUG
|
|
|
|
obj-$(CONFIG_PCMCIA_XIRCOM) += xircom_cb.o
|
|
obj-$(CONFIG_DM9102) += dmfe.o
|
|
obj-$(CONFIG_WINBOND_840) += winbond-840.o
|
|
obj-$(CONFIG_DE2104X) += de2104x.o
|
|
obj-$(CONFIG_TULIP) += tulip.o
|
|
obj-$(CONFIG_DE4X5) += de4x5.o
|
|
obj-$(CONFIG_ULI526X) += uli526x.o
|
|
|
|
# Declare multi-part drivers.
|
|
|
|
tulip-objs := eeprom.o interrupt.o media.o \
|
|
timer.o tulip_core.o \
|
|
21142.o pnic.o pnic2.o
|