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

USB: Move wusbcore and UWB to staging as it is obsolete

The UWB and wusbcore code is long obsolete, so let us just move the code
out of the real part of the kernel and into the drivers/staging/
location with plans to remove it entirely in a few releases.

Link: https://lore.kernel.org/r/20190806101509.GA11280@kroah.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7d9c1d2f
Loading
Loading
Loading
Loading
+4 −11
Original line number Diff line number Diff line
@@ -3800,14 +3800,9 @@ F: scripts/sign-file.c
F:	scripts/extract-cert.c

CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
L:	linux-usb@vger.kernel.org
L:	devel@driverdev.osuosl.org
S:	Orphan
F:	Documentation/usb/wusb-design-overview.rst
F:	Documentation/usb/wusb-cbaf
F:	drivers/usb/host/hwa-hc.c
F:	drivers/usb/host/whci/
F:	drivers/usb/wusbcore/
F:	include/linux/usb/wusb*
F:	drivers/staging/wbusbcore/

CFAG12864B LCD DRIVER
M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
@@ -16447,11 +16442,9 @@ F: drivers/usb/common/ulpi.c
F:	include/linux/ulpi/

ULTRA-WIDEBAND (UWB) SUBSYSTEM:
L:	linux-usb@vger.kernel.org
L:	devel@driverdev.osuosl.org
S:	Orphan
F:	drivers/uwb/
F:	include/linux/uwb.h
F:	include/linux/uwb/
F:	drivers/staging/uwb/

UNICODE SUBSYSTEM:
M:	Gabriel Krisman Bertazi <krisman@collabora.com>
+0 −2
Original line number Diff line number Diff line
@@ -108,8 +108,6 @@ source "drivers/hid/Kconfig"

source "drivers/usb/Kconfig"

source "drivers/uwb/Kconfig"

source "drivers/mmc/Kconfig"

source "drivers/memstick/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -100,7 +100,6 @@ obj-$(CONFIG_ZORRO) += zorro/
obj-$(CONFIG_ATA_OVER_ETH)	+= block/aoe/
obj-$(CONFIG_PARIDE) 		+= block/paride/
obj-$(CONFIG_TC)		+= tc/
obj-$(CONFIG_UWB)		+= uwb/
obj-$(CONFIG_USB_PHY)		+= usb/
obj-$(CONFIG_USB)		+= usb/
obj-$(CONFIG_USB_SUPPORT)	+= usb/
+3 −0
Original line number Diff line number Diff line
@@ -120,4 +120,7 @@ source "drivers/staging/kpc2000/Kconfig"

source "drivers/staging/isdn/Kconfig"

source "drivers/staging/wusbcore/Kconfig"
source "drivers/staging/uwb/Kconfig"

endif # STAGING
+2 −0
Original line number Diff line number Diff line
@@ -50,3 +50,5 @@ obj-$(CONFIG_EROFS_FS) += erofs/
obj-$(CONFIG_FIELDBUS_DEV)     += fieldbus/
obj-$(CONFIG_KPC2000)		+= kpc2000/
obj-$(CONFIG_ISDN_CAPI)		+= isdn/
obj-$(CONFIG_UWB)		+= uwb/
obj-$(CONFIG_USB_WUSB)		+= wusbcore/
Loading