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

Commit fa1c114f authored by Jiri Slaby's avatar Jiri Slaby Committed by David S. Miller
Browse files

[PATCH] Net: add ath5k wireless driver



add ath5k wireless driver

Portions of this driver are covered by one or both of the ISC and
3-clause BSD licenses.  Specific license information is cited at the top
of each file.

Acked-by and Signed-off-by information is collected from individual
patches as collected in the wireless-2.6 tree prior to upstream
submission.

Acked-by: default avatarMatthew W. S. Bell <mentor@madwifi.org>
Acked-by: default avatarMichael Taylor <mike.taylor@apprion.com>
Acked-by: default avatarPavel Roskin <proski@gnu.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarBradley M. Kuhn <bkuhn@softwarefreedom.org>
Signed-off-by: default avatarBruno Randolf <bruno@thinktube.com>
Signed-off-by: default avatarDave Young <hidave.darkstar@gmail.com>
Signed-off-by: default avatarFrancesco Gringoli <francesco.gringoli@ing.unibs.it>
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarKaren Sandler <karen@softwarefreedom.org>
Signed-off-by: default avatarKrzysztof Halasa <khc@pm.waw.pl>
Signed-off-by: default avatarLuis R. Rodriguez <mcgrof@gmail.com>
Signed-off-by: default avatarMatt Norwood <norwood@softwarefreedom.org>
Signed-off-by: default avatarNick Kossifidis <mickflemm@gmail.com>
Signed-off-by: default avatarRichard Fontana <fontana@softwarefreedom.org>
Signed-off-by: default avatarStephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: default avatarUlrich Meis <meis@nets.rwth-aachen.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 3543f806
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -646,6 +646,17 @@ M: ecashin@coraid.com
W:	http://www.coraid.com/support/linux
S:	Supported

ATHEROS ATH5K WIRELESS DRIVER
P:	Jiri Slaby
M:	jirislaby@gmail.com
P:	Nick Kossifidis
M:	mickflemm@gmail.com
P:	Luis R. Rodriguez
M:	mcgrof@gmail.com
L:	linux-wireless@vger.kernel.org
L:	ath5k-devel@lists.ath5k.org
S:	Maintained

ATL1 ETHERNET DRIVER
P:	Jay Cliburn
M:	jcliburn@gmail.com
+17 −0
Original line number Diff line number Diff line
@@ -648,6 +648,23 @@ config P54_PCI

	  If you choose to build a module, it'll be called p54pci.

config ATH5K
	tristate "Atheros 5xxx wireless cards support"
	depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
	---help---
	  This module adds support for wireless adapters based on
	  Atheros 5xxx chipset.

	  Currently the following chip versions are supported:

	  MAC: AR5211 AR5212
	  PHY: RF5111/2111 RF5112/2112 RF5413/2413

	  This driver uses the kernel's mac80211 subsystem.

	  If you choose to build a module, it'll be called ath5k. Say M if
	  unsure.

source "drivers/net/wireless/iwlwifi/Kconfig"
source "drivers/net/wireless/hostap/Kconfig"
source "drivers/net/wireless/bcm43xx/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -59,3 +59,5 @@ obj-$(CONFIG_RT2X00) += rt2x00/
obj-$(CONFIG_P54_COMMON)	+= p54common.o
obj-$(CONFIG_P54_USB)		+= p54usb.o
obj-$(CONFIG_P54_PCI)		+= p54pci.o

obj-$(CONFIG_ATH5K)	+= ath5k/
+2 −0
Original line number Diff line number Diff line
ath5k-objs		= base.o hw.o regdom.o initvals.o phy.o debug.o
obj-$(CONFIG_ATH5K)	+= ath5k.o
+1173 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading