9aa3283595
Move the IBM drivers into drivers/net/ethernet/ibm/ and make the necessary Kconfig and Makefile changes. - Renamed ibm_new_emac to emac - Cleaned up Makefile and Kconfig options which referred to IBM_NEW_EMAC to IBM_EMAC - ibmlana driver is a National Semiconductor SONIC driver so it was not moved CC: Christoph Raisch <raisch@de.ibm.com> CC: Santiago Leon <santil@linux.vnet.ibm.com> CC: Benjamin Herrenschmidt <benh@kernel.crashing.org> CC: David Gibson <dwg@au1.ibm.com> CC: Kyle Lucke <klucke@us.ibm.com> CC: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
23 lines
797 B
Makefile
23 lines
797 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_BROCADE) += brocade/
|
|
obj-$(CONFIG_NET_VENDOR_CHELSIO) += chelsio/
|
|
obj-$(CONFIG_NET_VENDOR_EMULEX) += emulex/
|
|
obj-$(CONFIG_NET_VENDOR_EXAR) += neterion/
|
|
obj-$(CONFIG_NET_VENDOR_IBM) += ibm/
|
|
obj-$(CONFIG_NET_VENDOR_INTEL) += intel/
|
|
obj-$(CONFIG_NET_VENDOR_I825XX) += i825xx/
|
|
obj-$(CONFIG_NET_VENDOR_MELLANOX) += mellanox/
|
|
obj-$(CONFIG_NET_VENDOR_MYRI) += myricom/
|
|
obj-$(CONFIG_NET_VENDOR_QLOGIC) += qlogic/
|
|
obj-$(CONFIG_NET_VENDOR_RACAL) += racal/
|
|
obj-$(CONFIG_SFC) += sfc/
|
|
obj-$(CONFIG_NET_VENDOR_SMSC) += smsc/
|
|
obj-$(CONFIG_NET_VENDOR_SUN) += sun/
|