Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 452c1ce2 authored by Chris Snook's avatar Chris Snook Committed by Jeff Garzik
Browse files

atl2: add atl2 driver



Driver for Atheros L2 10/100 network device. Includes necessary
changes for Kconfig, Makefile, and pci_ids.h.

Signed-off-by: default avatarChris Snook <csnook@redhat.com>
Signed-off-by: default avatarJay Cliburn <jacliburn@bellsouth.net>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 63f2c046
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -1840,6 +1840,17 @@ config NE_H8300
	  Say Y here if you want to use the NE2000 compatible
	  controller on the Renesas H8/300 processor.

config ATL2
	tristate "Atheros L2 Fast Ethernet support"
	depends on PCI
	select CRC32
	select MII
	help
	  This driver supports the Atheros L2 fast ethernet adapter.

	  To compile this driver as a module, choose M here.  The module
	  will be called atl2.

source "drivers/net/fs_enet/Kconfig"

endif # NET_ETHERNET
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ obj-$(CONFIG_EHEA) += ehea/
obj-$(CONFIG_CAN) += can/
obj-$(CONFIG_BONDING) += bonding/
obj-$(CONFIG_ATL1) += atlx/
obj-$(CONFIG_ATL2) += atlx/
obj-$(CONFIG_ATL1E) += atl1e/
obj-$(CONFIG_GIANFAR) += gianfar_driver.o
obj-$(CONFIG_TEHUTI) += tehuti.o
+2 −0
Original line number Diff line number Diff line
obj-$(CONFIG_ATL1)	+= atl1.o
obj-$(CONFIG_ATL2)	+= atl2.o
Loading