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

Commit 99e06e37 authored by Pavel Roskin's avatar Pavel Roskin Committed by Greg Kroah-Hartman
Browse files

staging: at76_usb wireless driver



Add the at76_usb wireless driver to the staging tree while the
other kernel driver (out of tree) gets rewritten to use the internal
wireless stack.

This patch comes directly from the Fedora kernel tree, with only the
directory placement of the files changed.

Signed-off-by: default avatarPavel Roskin <proski@gnu.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 86f69fe9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -41,4 +41,6 @@ source "drivers/staging/wlan-ng/Kconfig"

source "drivers/staging/echo/Kconfig"

source "drivers/staging/at76_usb/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -12,3 +12,4 @@ obj-$(CONFIG_USB_IP_COMMON) += usbip/
obj-$(CONFIG_W35UND)		+= winbond/
obj-$(CONFIG_PRISM2_USB)	+= wlan-ng/
obj-$(CONFIG_ECHO)		+= echo/
obj-$(CONFIG_USB_ATMEL)		+= at76_usb/
+8 −0
Original line number Diff line number Diff line
config USB_ATMEL
	tristate "Atmel at76c503/at76c505/at76c505a USB cards"
	depends on WLAN_80211 && USB
	default N
	select FW_LOADER
	---help---
	  Enable support for USB Wireless devices using Atmel at76c503,
	  at76c505 or at76c505a chips.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_USB_ATMEL)		+= at76_usb.o
+2 −0
Original line number Diff line number Diff line
rewrite the driver to use the proper in-kernel wireless stack
instead of using its own.
Loading