Commit 15a4bc17 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: add CSR Wifi "os helper" module



This module is used by the CSR wifi driver to "abstract" away the
OS-specific parts of core functions.  It will be eventually deleted, but
for now is needed as the CSR driver relies on it.

Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com>
Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com>
Cc: Riku Mettälä <riku.mettala@bluegiga.com>
Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 55232eca
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -132,4 +132,6 @@ source "drivers/staging/ipack/Kconfig"

source "drivers/staging/gdm72xx/Kconfig"

source "drivers/staging/csr/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -58,3 +58,4 @@ obj-$(CONFIG_RAMSTER) += ramster/
obj-$(CONFIG_USB_WPAN_HCD)	+= ozwpan/
obj-$(CONFIG_USB_G_CCG)		+= ccg/
obj-$(CONFIG_WIMAX_GDM72XX)	+= gdm72xx/
obj-$(CONFIG_CSR_WIFI)		+= csr/
+7 −0
Original line number Diff line number Diff line
config CSR_WIFI
	tristate "CSR wireless driver"
	depends on PCI
	help
	  Driver for the CSR wireless SDIO device.

	  If unsure, select N.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_CSR_WIFI)	+= oska/
+12 −0
Original line number Diff line number Diff line
obj-$(CONFIG_CSR_WIFI) := csr_oska.o

csr_oska-y := \
       list.o \
       refcount.o \
       compat.o \
       event.o \
       oska_module.o \
       print.o  \
       thread.o \
       timer.o
Loading