aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet
diff options
context:
space:
mode:
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-03-29 21:25:21 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-08-10 22:53:20 -0400
commitc1abc95b157fe4574919942018af143203ecca8e (patch)
tree8cf88016bb3ed7c11a387bd2a20a8c3ecbacbc5c /drivers/net/ethernet
parent19fd61785a580c60cba900c5171bfadb57dd5056 (diff)
drivers/net/ethernet: Add ethernet dir and config option
This is the initial patch to organize the drivers/net directory structure and networking device driver config options. This patch does the following: - add drivers/net/ethernet/Kconfig - integrate the new files into the existing config Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r--drivers/net/ethernet/Kconfig14
-rw-r--r--drivers/net/ethernet/Makefile3
2 files changed, 17 insertions, 0 deletions
diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig
new file mode 100644
index 000000000000..d59e4f2aa93f
--- /dev/null
+++ b/drivers/net/ethernet/Kconfig
@@ -0,0 +1,14 @@
1#
2# Ethernet LAN device configuration
3#
4
5menuconfig ETHERNET
6 bool "Ethernet driver support"
7 depends on NET
8 default y
9 ---help---
10 This section contains all the Ethernet device drivers.
11
12if ETHERNET
13
14endif # ETHERNET
diff --git a/drivers/net/ethernet/Makefile b/drivers/net/ethernet/Makefile
new file mode 100644
index 000000000000..0d21dda32038
--- /dev/null
+++ b/drivers/net/ethernet/Makefile
@@ -0,0 +1,3 @@
1#
2# Makefile for the Linux network Ethernet device drivers.
3#