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

Commit eff1a59c authored by Michael Wu's avatar Michael Wu Committed by David S. Miller
Browse files

[P54]: add mac80211-based driver for prism54 softmac hardware

parent 0795af57
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -3060,6 +3060,14 @@ L: kpreempt-tech@lists.sourceforge.net
W:	ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
S:	Supported

P54 WIRELESS DRIVER
P:	Michael Wu
M:	flamingice@sourmilk.net
L:	linux-wireless@vger.kernel.org
W:	http://prism54.org
T:	git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
S:	Maintained

PRISM54 WIRELESS DRIVER
P:	Luis R. Rodriguez
M:	mcgrof@gmail.com
+13 −0
Original line number Diff line number Diff line
@@ -577,6 +577,19 @@ config ADM8211

	  Thanks to Infineon-ADMtek for their support of this driver.

config P54_COMMON
	tristate "Softmac Prism54 support"
	depends on MAC80211 && WLAN_80211 && FW_LOADER && EXPERIMENTAL

config P54_USB
	tristate "Prism54 USB support"
	depends on P54_COMMON && USB
	select CRC32

config P54_PCI
	tristate "Prism54 PCI support"
	depends on P54_COMMON && PCI

source "drivers/net/wireless/iwlwifi/Kconfig"
source "drivers/net/wireless/hostap/Kconfig"
source "drivers/net/wireless/bcm43xx/Kconfig"
+4 −0
Original line number Diff line number Diff line
@@ -54,3 +54,7 @@ obj-$(CONFIG_ADM8211) += adm8211.o

obj-$(CONFIG_IWLWIFI)	+= iwlwifi/
obj-$(CONFIG_RT2X00)	+= rt2x00/

obj-$(CONFIG_P54_COMMON)	+= p54common.o
obj-$(CONFIG_P54_USB)		+= p54usb.o
obj-$(CONFIG_P54_PCI)		+= p54pci.o
Loading