mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
ae150435b5
Moves the SMC (SMSC) drivers into drivers/net/ethernet/smsc/ and the necessary Kconfig and Makefile changes. Also did some cleanup of NET_VENDOR_SMC Kconfig tag for the 8390 based drivers. CC: Nicolas Pitre <nico@fluxnic.net> CC: Donald Becker <becker@scyld.com> CC: Erik Stahlman <erik@vt.edu> CC: Dustin McIntire <dustin@sensoria.com> CC: Steve Glendinning <steve.glendinning@smsc.com> CC: David Hinds <dahinds@users.sourceforge.net> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
24 lines
575 B
Plaintext
24 lines
575 B
Plaintext
#
|
|
# Ethernet LAN device configuration
|
|
#
|
|
|
|
menuconfig ETHERNET
|
|
bool "Ethernet driver support"
|
|
depends on NET
|
|
default y
|
|
---help---
|
|
This section contains all the Ethernet device drivers.
|
|
|
|
if ETHERNET
|
|
|
|
source "drivers/net/ethernet/3com/Kconfig"
|
|
source "drivers/net/ethernet/8390/Kconfig"
|
|
source "drivers/net/ethernet/amd/Kconfig"
|
|
source "drivers/net/ethernet/broadcom/Kconfig"
|
|
source "drivers/net/ethernet/chelsio/Kconfig"
|
|
source "drivers/net/ethernet/intel/Kconfig"
|
|
source "drivers/net/ethernet/qlogic/Kconfig"
|
|
source "drivers/net/ethernet/smsc/Kconfig"
|
|
|
|
endif # ETHERNET
|