mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
1159788592
Move the drivers that use the i82586/i82593/i82596 chipsets into drivers/net/ethernet/i825xx/ and make the necessary Kconfig and Makefile changes. There were 4 3Com drivers which were initially moved into 3com/, which now reside in i825xx since they all used the i82586 chip. CC: Philip Blundell <philb@gnu.org> CC: Russell King <linux@arm.linux.org.uk> CC: <aris@cathedrallabs.org> CC: Donald Becker <becker@scyld.com> CC: Chris Beauregard <cpbeaure@undergrad.math.uwaterloo.ca> CC: Richard Procter <rnp@paradise.net.nz> CC: Andries Brouwer <aeb@cwi.nl> CC: "M.Hipp" <hippm@informatik.uni-tuebingen.de> CC: Richard Hirst <richard@sleepie.demon.co.uk> CC: Sam Creasey <sammy@oh.verio.com> CC: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
14 lines
436 B
Makefile
14 lines
436 B
Makefile
#
|
|
# Makefile for the Linux network Ethernet device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_NET_VENDOR_3COM) += 3com/
|
|
obj-$(CONFIG_NET_VENDOR_8390) += 8390/
|
|
obj-$(CONFIG_NET_VENDOR_AMD) += amd/
|
|
obj-$(CONFIG_NET_VENDOR_BROADCOM) += broadcom/
|
|
obj-$(CONFIG_NET_VENDOR_CHELSIO) += chelsio/
|
|
obj-$(CONFIG_NET_VENDOR_INTEL) += intel/
|
|
obj-$(CONFIG_NET_VENDOR_I825XX) += i825xx/
|
|
obj-$(CONFIG_NET_VENDOR_QLOGIC) += qlogic/
|
|
obj-$(CONFIG_NET_VENDOR_SMSC) += smsc/
|