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

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

Staging: rspiusb: remove the driver



No one cares, it's a custom userspace interface, and the code hasn't
built in a long time.  So remove it.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a8fcffbd
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -85,8 +85,6 @@ source "drivers/staging/rtl8192su/Kconfig"

source "drivers/staging/rtl8192e/Kconfig"

source "drivers/staging/rspiusb/Kconfig"

source "drivers/staging/mimio/Kconfig"

source "drivers/staging/frontier/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ obj-$(CONFIG_ALTERA_PCIE_CHDMA) += altpciechdma/
obj-$(CONFIG_RTL8187SE)		+= rtl8187se/
obj-$(CONFIG_RTL8192SU)		+= rtl8192su/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_USB_RSPI)		+= rspiusb/
obj-$(CONFIG_INPUT_MIMIO)	+= mimio/
obj-$(CONFIG_TRANZPORT)		+= frontier/
obj-$(CONFIG_ANDROID)		+= android/

drivers/staging/rspiusb/Kconfig

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
config USB_RSPI
	tristate "Princeton Instruments USB camera support"
	default n
	depends on USB && BROKEN
	help
	  This driver is for the Princeton Instruments USB camera device.

drivers/staging/rspiusb/Makefile

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
obj-$(CONFIG_USB_RSPI)		+= rspiusb.o

drivers/staging/rspiusb/TODO

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
This driver is for the Princeton Instruments USB camera.

It needs lots of work to get it into the main drivers/usb/ subdirectory:

Any patches to do any of the following changes are greatly appreciated:

	- make checkpatch.pl clean
	- coding style fixups (typedefs, etc.)
	- get it to build properly
	- audit ioctls
	- remove ioctls if possible
	- assign proper minor number
	- remove dbg() macro
	- lots of general cleanups
	- review locking

Please send patches to:
	Greg Kroah-Hartman <gregkh@suse.de>
and CC:
	Judd Montgomery <judd@jpilot.org>
	Jeff Frontz <jeff.frontz@gmail.com>
as they have this device and can test any needed changes.
Loading