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

Commit 3765dc92 authored by Shraddha Barke's avatar Shraddha Barke Committed by Greg Kroah-Hartman
Browse files

Staging: gdm72xx: Remove gdm72xx driver

Remove support for gdm72xx driver from the kernel since Wimax is dead.
[1] http://www.networkworld.com/article/2220370/4g/wimax-is-dead.html
[2] http://www.androidcentral.com/sprint-confirms-wimax-shutdown-november-6-2015



Chrome OS can distribute this driver alongside their library.

Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e0a2d503
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -72,8 +72,6 @@ source "drivers/staging/android/Kconfig"

source "drivers/staging/board/Kconfig"

source "drivers/staging/gdm72xx/Kconfig"

source "drivers/staging/gdm724x/Kconfig"

source "drivers/staging/fwserial/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ obj-$(CONFIG_MFD_NVEC) += nvec/
obj-$(CONFIG_STAGING_RDMA)	+= rdma/
obj-$(CONFIG_ANDROID)		+= android/
obj-$(CONFIG_STAGING_BOARD)	+= board/
obj-$(CONFIG_WIMAX_GDM72XX)	+= gdm72xx/
obj-$(CONFIG_LTE_GDM724X)	+= gdm724x/
obj-$(CONFIG_FIREWIRE_SERIAL)	+= fwserial/
obj-$(CONFIG_GOLDFISH)		+= goldfish/

drivers/staging/gdm72xx/Kconfig

deleted100644 → 0
+0 −63
Original line number Diff line number Diff line
#
# GCT GDM72xx WiMAX driver configuration
#

menuconfig WIMAX_GDM72XX
	tristate "GCT GDM72xx WiMAX support"
	depends on NET && (USB || MMC)
	help
	  Support a WiMAX module based on the GCT GDM72xx WiMAX chip.

if WIMAX_GDM72XX

config WIMAX_GDM72XX_QOS
	bool "Enable QoS support"
	default n
	help
	  Enable Quality of Service support based on the data protocol of
	  transmitting packets.

config WIMAX_GDM72XX_K_MODE
	bool "Enable K mode"
	default n
	help
	  Enable support for proprietary functions for KT (Korea Telecom).

config WIMAX_GDM72XX_WIMAX2
	bool "Enable WiMAX2 support"
	default n
	help
	  Enable support for transmitting multiple packets (packet
	  aggregation) from the WiMAX module to the host processor.

choice
	prompt "Select interface"

config WIMAX_GDM72XX_USB
	bool "USB interface"
	depends on (USB = y || USB = WIMAX_GDM72XX)
	help
	  Select this option if the WiMAX module interfaces with the host
	  processor via USB.

config WIMAX_GDM72XX_SDIO
	bool "SDIO interface"
	depends on (MMC = y || MMC = WIMAX_GDM72XX)
	help
	  Select this option if the WiMAX module interfaces with the host
	  processor via SDIO.

endchoice

if WIMAX_GDM72XX_USB

config WIMAX_GDM72XX_USB_PM
	bool "Enable power management support"
	depends on PM
	help
	  Enable USB power management in order to reduce power consumption
	  while the interface is not in use.

endif # WIMAX_GDM72XX_USB

endif # WIMAX_GDM72XX

drivers/staging/gdm72xx/Makefile

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
obj-$(CONFIG_WIMAX_GDM72XX) := gdmwm.o

gdmwm-y += gdm_wimax.o netlink_k.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_QOS) += gdm_qos.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_SDIO) += gdm_sdio.o sdio_boot.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_USB) += gdm_usb.o usb_boot.o

drivers/staging/gdm72xx/TODO

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
TODO:
- Clean up coding style to meet kernel standard.
Loading