-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Staging: add wlan-ng prism2 usb driver
This adds the wlan-ng prism2 USB driver to the drivers/staging tree. The code was originally written by the linux-wlan-ng team, patched by some Novell engineers to properly work on newer kernels, and then hacked into place in order to get it to build properly in a single subdirectory within the kernel tree by me. It supports a wide range of older USB prism2 devices, and contains a 80211 stack to support this single driver. Cc: Christian Zoz <zoz@suse.de> Cc: Andreas Gruenbacher <agruen@suse.de> Cc: linux-wireless <linux-wireless@vger.kernel.org> Cc: John Linville <linville@tuxdriver.com> Cc: Helmut Schaa <helmut.schaa@googlemail.com> Cc: linux-wlan-ng <solomon@linux-wlan.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Greg Kroah-Hartman
committed
Oct 10, 2008
1 parent
66101de
commit 00b3ed1
Showing
37 changed files
with
36,060 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
config PRISM2_USB | ||
tristate "Prism2.5 USB driver" | ||
depends on USB | ||
default n | ||
---help--- | ||
This is the wlan-ng prism 2.5 USB driver for a wide range of | ||
old USB wireless devices. | ||
|
||
To compile this driver as a module, choose M here: the module | ||
will be called prism2_usb. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
obj-$(CONFIG_PRISM2_USB) += prism2_usb.o | ||
obj-$(CONFIG_PRISM2_USB) += p80211.o | ||
|
||
p80211-objs := p80211mod.o \ | ||
p80211conv.o \ | ||
p80211req.o \ | ||
p80211wep.o \ | ||
p80211wext.o \ | ||
p80211netdev.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TODO: | ||
- checkpatch.pl cleanups | ||
- sparse warnings | ||
- Lindent cleanups | ||
- move to use the in-kernel wireless stack | ||
- possible enable the pcmcia and pci portions of the driver | ||
|
||
Please send all patches to Greg Kroah-Hartman <greg@kroah.com> |
Oops, something went wrong.