aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/atheros/Kconfig
diff options
context:
space:
mode:
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-05-20 09:55:16 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-08-11 19:29:59 -0400
commit2b133ad6e9e96798007e64eb912c42fa00adef0a (patch)
tree34d1760a9257b150289893cda05b4adfa1990306 /drivers/net/ethernet/atheros/Kconfig
parent3401299a1b9e747cbf7de2cc0c8f6376c3cbe565 (diff)
atl*: Move the Atheros drivers
Move the Atheros drivers into drivers/net/ethernet/atheros/ and make the necessary Kconfig and Makefile changes. CC: Jay Cliburn <jcliburn@gmail.com> CC: Chris Snook <chris.snook@gmail.com> CC: Jie Yang <jie.yang@atheros.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/atheros/Kconfig')
-rw-r--r--drivers/net/ethernet/atheros/Kconfig65
1 files changed, 65 insertions, 0 deletions
diff --git a/drivers/net/ethernet/atheros/Kconfig b/drivers/net/ethernet/atheros/Kconfig
new file mode 100644
index 000000000000..966c6c7ea09c
--- /dev/null
+++ b/drivers/net/ethernet/atheros/Kconfig
@@ -0,0 +1,65 @@
1#
2# Atheros device configuration
3#
4
5config NET_VENDOR_ATHEROS
6 bool "Atheros devices"
7 depends on PCI
8 ---help---
9 If you have a network (Ethernet) card belonging to this class, say Y
10 and read the Ethernet-HOWTO, available from
11 <http://www.tldp.org/docs.html#howto>.
12
13 Note that the answer to this question doesn't directly affect the
14 kernel: saying N will just cause the configurator to skip all
15 the questions about Atheros devices. If you say Y, you will be asked
16 for your specific card in the following questions.
17
18if NET_VENDOR_ATHEROS
19
20config ATL2
21 tristate "Atheros L2 Fast Ethernet support"
22 depends on PCI
23 select CRC32
24 select MII
25 ---help---
26 This driver supports the Atheros L2 fast ethernet adapter.
27
28 To compile this driver as a module, choose M here. The module
29 will be called atl2.
30
31config ATL1
32 tristate "Atheros/Attansic L1 Gigabit Ethernet support"
33 depends on PCI
34 select CRC32
35 select MII
36 ---help---
37 This driver supports the Atheros/Attansic L1 gigabit ethernet
38 adapter.
39
40 To compile this driver as a module, choose M here. The module
41 will be called atl1.
42
43config ATL1E
44 tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)"
45 depends on PCI && EXPERIMENTAL
46 select CRC32
47 select MII
48 ---help---
49 This driver supports the Atheros L1E gigabit ethernet adapter.
50
51 To compile this driver as a module, choose M here. The module
52 will be called atl1e.
53
54config ATL1C
55 tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)"
56 depends on PCI && EXPERIMENTAL
57 select CRC32
58 select MII
59 ---help---
60 This driver supports the Atheros L1C gigabit ethernet adapter.
61
62 To compile this driver as a module, choose M here. The module
63 will be called atl1c.
64
65endif # NET_VENDOR_ATHEROS