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

Commit bdb903e4 authored by John W. Linville's avatar John W. Linville
Browse files

iwmc3200wifi: remove driver for unavailable hardware



This hardware never became available to normal humans.  Leaving this
driver imposes unwelcome maintenance costs for no clear benefit.

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Acked-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent f7ace5f0
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -3654,14 +3654,6 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
S:	Supported
F:	drivers/net/wireless/iwlwifi/

INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
M:	Samuel Ortiz <samuel.ortiz@intel.com>
M:	Intel Linux Wireless <ilw@linux.intel.com>
L:	linux-wireless@vger.kernel.org
S:	Supported
W:	http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
F:	drivers/net/wireless/iwmc3200wifi/

INTEL MANAGEMENT ENGINE (mei)
M:	Tomas Winkler <tomas.winkler@intel.com>
L:	linux-kernel@vger.kernel.org
+0 −1
Original line number Diff line number Diff line
@@ -276,7 +276,6 @@ source "drivers/net/wireless/hostap/Kconfig"
source "drivers/net/wireless/ipw2x00/Kconfig"
source "drivers/net/wireless/iwlwifi/Kconfig"
source "drivers/net/wireless/iwlegacy/Kconfig"
source "drivers/net/wireless/iwmc3200wifi/Kconfig"
source "drivers/net/wireless/libertas/Kconfig"
source "drivers/net/wireless/orinoco/Kconfig"
source "drivers/net/wireless/p54/Kconfig"
+0 −2
Original line number Diff line number Diff line
@@ -53,8 +53,6 @@ obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o

obj-$(CONFIG_WL_TI)	+= ti/

obj-$(CONFIG_IWM)	+= iwmc3200wifi/

obj-$(CONFIG_MWIFIEX)	+= mwifiex/

obj-$(CONFIG_BRCMFMAC)	+= brcm80211/
+0 −39
Original line number Diff line number Diff line
config IWM
	tristate "Intel Wireless Multicomm 3200 WiFi driver (EXPERIMENTAL)"
	depends on MMC && EXPERIMENTAL
	depends on CFG80211
	select FW_LOADER
	select IWMC3200TOP
	help
	  The Intel Wireless Multicomm 3200 hardware is a combo
	  card with GPS, Bluetooth, WiMax and 802.11 radios. It
	  runs over SDIO and is typically found on Moorestown
	  based platform. This driver takes care of the 802.11
	  part, which is a fullmac one.

	  If you choose to build it as a module, it'll be called
	  iwmc3200wifi.ko.

config IWM_DEBUG
	bool "Enable full debugging output in iwmc3200wifi"
	depends on IWM && DEBUG_FS
	help
	  This option will enable debug tracing and setting for iwm

	  You can set the debug level and module through debugfs. By
	  default all modules are set to the IWL_DL_ERR level.
	  To see the list of debug modules and levels, see iwm/debug.h

	  For example, if you want the full MLME debug output:
	  echo 0xff > /sys/kernel/debug/iwm/phyN/debug/mlme

	  Or, if you want the full debug, for all modules:
	  echo 0xff > /sys/kernel/debug/iwm/phyN/debug/level
	  echo 0xff > /sys/kernel/debug/iwm/phyN/debug/modules

config IWM_TRACING
	bool "Enable event tracing for iwmc3200wifi"
	depends on IWM && EVENT_TRACING
	help
	  Say Y here to trace all the commands and responses between
	  the driver and firmware (including TX/RX frames) with ftrace.
+0 −10
Original line number Diff line number Diff line
obj-$(CONFIG_IWM) := iwmc3200wifi.o
iwmc3200wifi-objs += main.o netdev.o rx.o tx.o sdio.o hal.o fw.o
iwmc3200wifi-objs += commands.o cfg80211.o eeprom.o

iwmc3200wifi-$(CONFIG_IWM_DEBUG) += debugfs.o
iwmc3200wifi-$(CONFIG_IWM_TRACING) += trace.o

CFLAGS_trace.o := -I$(src)

ccflags-y += -D__CHECK_ENDIAN__
Loading