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

Commit 66101de1 authored by Pavel Machek's avatar Pavel Machek Committed by Greg Kroah-Hartman
Browse files

Staging: add w35und wifi driver



This is driver for w35und usb wifi -- also in kohjinsha
subnotebook. It should work well enough to associate and ping, but it
obviously needs to be rewritten two more times...

OTOH worst horrors (like embedded wifi stack) should have been fixed
already...

Signed-off-by: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4d7b5c7f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -35,4 +35,6 @@ source "drivers/staging/go7007/Kconfig"

source "drivers/staging/usbip/Kconfig"

source "drivers/staging/winbond/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -6,3 +6,4 @@ obj-$(CONFIG_SXG) += sxg/
obj-$(CONFIG_ME4000)		+= me4000/
obj-$(CONFIG_VIDEO_GO7007)	+= go7007/
obj-$(CONFIG_USB_IP_COMMON)	+= usbip/
obj-$(CONFIG_W35UND)		+= winbond/
+7 −0
Original line number Diff line number Diff line
config W35UND
	tristate "Winbond driver"
	depends on MAC80211 && WLAN_80211 && EXPERIMENTAL && !4KSTACKS
	default n
	---help---
	  This is highly experimental driver for winbond wifi card on some Kohjinsha notebooks
	  Check http://code.google.com/p/winbondport/ for new version
+18 −0
Original line number Diff line number Diff line
	DRIVER_DIR=./linux

w35und-objs := $(DRIVER_DIR)/wbusb.o $(DRIVER_DIR)/wb35reg.o $(DRIVER_DIR)/wb35rx.o $(DRIVER_DIR)/wb35tx.o \
	mds.o \
	mlmetxrx.o \
	mto.o	\
	phy_calibration.o	\
	reg.o			\
	rxisr.o			\
	sme_api.o		\
	wbhal.o			\
	wblinux.o		\


obj-$(CONFIG_W35UND) += w35und.o


+10 −0
Original line number Diff line number Diff line
TODO:
	- sparse cleanups
	- checkpatch cleanups
	- kerneldoc cleanups
	- remove typedefs
	- remove unused ioctls
	- use cfg80211 for regulatory stuff

Please send patches to Greg Kroah-Hartman <greg@kroah.com> and
Pavel Machek <pavel@suse.cz>
Loading