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

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

staging: btmtk_usb: remove driver



No one seems to be working on it anymore, and it really should be merged
into the already-existing btusb driver.  Also, there is not any proper
author attribution on the code (it was copied from the in-kernel
driver...)

If someone wants to pick this back up, we can easily revert this, but
for now, delete the driver.

Cc: Yu-Chen, Cho <acho@suse.com>
Cc: Jay Hung <jay.hung@mediatek.com>
Cc: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 588c31ea
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -144,8 +144,6 @@ source "drivers/staging/dwc2/Kconfig"

source "drivers/staging/lustre/Kconfig"

source "drivers/staging/btmtk_usb/Kconfig"

source "drivers/staging/xillybus/Kconfig"

source "drivers/staging/dgnc/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -63,7 +63,6 @@ obj-$(CONFIG_FIREWIRE_SERIAL) += fwserial/
obj-$(CONFIG_GOLDFISH)		+= goldfish/
obj-$(CONFIG_USB_DWC2)		+= dwc2/
obj-$(CONFIG_LUSTRE_FS)		+= lustre/
obj-$(CONFIG_USB_BTMTK)		+= btmtk_usb/
obj-$(CONFIG_XILLYBUS)		+= xillybus/
obj-$(CONFIG_DGNC)			+= dgnc/
obj-$(CONFIG_DGAP)			+= dgap/

drivers/staging/btmtk_usb/Kconfig

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
config USB_BTMTK
	tristate "Mediatek Bluetooth support"
	depends on USB && BT && m
	---help---
	  Say Y here if you wish to control a MTK USB Bluetooth.

	  This option depends on 'USB' support being enabled

	  To compile this driver as a module, choose M here: the
	  module will be called btmtk_usb.
+0 −1
Original line number Diff line number Diff line
obj-$(CONFIG_USB_BTMTK)	+= btmtk_usb.o

drivers/staging/btmtk_usb/README

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
-build driver modules
	make

-install driver modules
	make install

-remove driver modules
	make clean

-dynamic debug message
	turn on CONFIG_DYNAMIC_DEBUG compiler flag for current kernel
	mount -t debugfs none /sys/kernel/debug/
	echo "module module_name +p" > /sys/kernel/debug/dynamic_debug/control(turn on debug messages, module name such as btmtk_usb)
	echo "module module_name -p" > /sys/kernel/debug/dynamic_debug/control(turn off debug messages, module name such as btmtk_usb)
Loading