-
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.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6: (25 commits) staging: at76_usb wireless driver Staging: workaround build system bug Staging: Lindent sxg.c Staging: SLICOSS: Call pci_release_regions at driver exit Staging: SLICOSS: Fix remaining type names Staging: SLICOSS: Fix warnings due to static usage Staging: SLICOSS: lots of checkpatch fixes Staging: go7007 v4l fixes Staging: Fix gcc warnings in sxg Staging: add echo cancelation module Staging: add wlan-ng prism2 usb driver Staging: add w35und wifi driver Staging: USB/IP: add host driver Staging: USB/IP: add client driver Staging: USB/IP: add common functions needed Staging: add the go7007 video driver Staging: add me4000 pci data collection driver Staging: add me4000 firmware files Staging: add sxg network driver Staging: add Alacritech slicoss network driver ... Fixed up conflicts due to taint flags changes and MAINTAINERS cleanup in MAINTAINERS, include/linux/kernel.h and kernel/panic.c.
- Loading branch information
Showing
211 changed files
with
152,422 additions
and
1 deletion.
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
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,46 @@ | ||
menuconfig STAGING | ||
bool "Staging drivers" | ||
default n | ||
---help--- | ||
This option allows you to select a number of drivers that are | ||
not of the "normal" Linux kernel quality level. These drivers | ||
are placed here in order to get a wider audience for use of | ||
them. Please note that these drivers are under heavy | ||
development, may or may not work, and may contain userspace | ||
interfaces that most likely will be changed in the near | ||
future. | ||
|
||
Using any of these drivers will taint your kernel which might | ||
affect support options from both the community, and various | ||
commercial support orginizations. | ||
|
||
If you wish to work on these drivers, to help improve them, or | ||
to report problems you have with them, please see the | ||
driver_name.README file in the drivers/staging/ directory to | ||
see what needs to be worked on, and who to contact. | ||
|
||
If in doubt, say N here. | ||
|
||
if STAGING | ||
|
||
source "drivers/staging/et131x/Kconfig" | ||
|
||
source "drivers/staging/slicoss/Kconfig" | ||
|
||
source "drivers/staging/sxg/Kconfig" | ||
|
||
source "drivers/staging/me4000/Kconfig" | ||
|
||
source "drivers/staging/go7007/Kconfig" | ||
|
||
source "drivers/staging/usbip/Kconfig" | ||
|
||
source "drivers/staging/winbond/Kconfig" | ||
|
||
source "drivers/staging/wlan-ng/Kconfig" | ||
|
||
source "drivers/staging/echo/Kconfig" | ||
|
||
source "drivers/staging/at76_usb/Kconfig" | ||
|
||
endif # STAGING |
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,15 @@ | ||
# Makefile for staging directory | ||
|
||
# fix for build system bug... | ||
obj-$(CONFIG_STAGING) += staging.o | ||
|
||
obj-$(CONFIG_ET131X) += et131x/ | ||
obj-$(CONFIG_SLICOSS) += slicoss/ | ||
obj-$(CONFIG_SXG) += sxg/ | ||
obj-$(CONFIG_ME4000) += me4000/ | ||
obj-$(CONFIG_VIDEO_GO7007) += go7007/ | ||
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/ |
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 @@ | ||
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. |
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 @@ | ||
obj-$(CONFIG_USB_ATMEL) += at76_usb.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,2 @@ | ||
rewrite the driver to use the proper in-kernel wireless stack | ||
instead of using its own. |
Oops, something went wrong.