Skip to content

Commit a6a5325

Browse files
Jie YangJeff Garzik
authored andcommitted
atl1e: Atheros L1E Gigabit Ethernet driver
Full patch for the Atheros L1E Gigabit Ethernet driver. Supportring AR8121, AR8113 and AR8114 Signed-off-by: Jie Yang <jie.yang @atheros.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
1 parent bb5d10a commit a6a5325

File tree

9 files changed

+5241
-0
lines changed

9 files changed

+5241
-0
lines changed

drivers/net/Kconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2304,6 +2304,17 @@ config ATL1
23042304
To compile this driver as a module, choose M here. The module
23052305
will be called atl1.
23062306

2307+
config ATL1E
2308+
tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)"
2309+
depends on PCI && EXPERIMENTAL
2310+
select CRC32
2311+
select MII
2312+
help
2313+
This driver supports the Atheros L1E gigabit ethernet adapter.
2314+
2315+
To compile this driver as a module, choose M here. The module
2316+
will be called atl1e.
2317+
23072318
endif # NETDEV_1000
23082319

23092320
#

drivers/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ obj-$(CONFIG_EHEA) += ehea/
1515
obj-$(CONFIG_CAN) += can/
1616
obj-$(CONFIG_BONDING) += bonding/
1717
obj-$(CONFIG_ATL1) += atlx/
18+
obj-$(CONFIG_ATL1E) += atl1e/
1819
obj-$(CONFIG_GIANFAR) += gianfar_driver.o
1920
obj-$(CONFIG_TEHUTI) += tehuti.o
2021

drivers/net/atl1e/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
obj-$(CONFIG_ATL1E) += atl1e.o
2+
atl1e-objs += atl1e_main.o atl1e_hw.o atl1e_ethtool.o atl1e_param.o

0 commit comments

Comments
 (0)