Commit f54ec58f authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

wimax: move out to staging

There are no known users of this driver as of October 2020, and it will
be removed unless someone turns out to still need it in future releases.

According to https://en.wikipedia.org/wiki/List_of_WiMAX_networks, there
have been many public wimax networks, but it appears that many of these
have migrated to LTE or discontinued their service altogether.
As most PCs and phones lack WiMAX hardware support, the remaining
networks tend to use standalone routers. These almost certainly
run Linux, but not a modern kernel or the mainline wimax driver stack.

NetworkManager appears to have dropped userspace support in 2015
https://bugzilla.gnome.org/show_bug.cgi?id=747846

, the
www.linuxwimax.org
site had already shut down earlier.

WiMax is apparently still being deployed on airport campus networks
("AeroMACS"), but in a frequency band that was not supported by the old
Intel 2400m (used in Sandy Bridge laptops and earlier), which is the
only driver using the kernel's wimax stack.

Move all files into drivers/staging/wimax, including the uapi header
files and documentation, to make it easier to remove it when it gets
to that. Only minimal changes are made to the source files, in order
to make it possible to port patches across the move.

Also remove the MAINTAINERS entry that refers to a broken mailing
list and website.

Acked-by: default avatarJakub Kicinski <kuba@kernel.org>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-By: default avatarInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Acked-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Suggested-by: default avatarInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 72de7d96
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -115,7 +115,6 @@ configure specific aspects of kernel behavior to your liking.
   unicode
   vga-softcursor
   video-output
   wimax/index
   xfs

.. only::  subproject and html
+0 −21
Original line number Diff line number Diff line
@@ -83,27 +83,6 @@ SUN RPC subsystem
.. kernel-doc:: net/sunrpc/clnt.c
   :export:

WiMAX
-----

.. kernel-doc:: net/wimax/op-msg.c
   :export:

.. kernel-doc:: net/wimax/op-reset.c
   :export:

.. kernel-doc:: net/wimax/op-rfkill.c
   :export:

.. kernel-doc:: net/wimax/stack.c
   :export:

.. kernel-doc:: include/net/wimax.h
   :internal:

.. kernel-doc:: include/uapi/linux/wimax.h
   :internal:

Network device support
======================

+0 −1
Original line number Diff line number Diff line
@@ -114,7 +114,6 @@ Todolist:
   unicode
   vga-softcursor
   video-output
   wimax/index
   xfs

.. only::  subproject and html
+0 −22
Original line number Diff line number Diff line
@@ -9106,16 +9106,6 @@ W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
F:	drivers/net/wireless/intel/iwlwifi/
INTEL WIRELESS WIMAX CONNECTION 2400
M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org (subscribers-only)
S:	Supported
W:	http://linuxwimax.org
F:	Documentation/admin-guide/wimax/i2400m.rst
F:	drivers/net/wimax/i2400m/
F:	include/uapi/linux/wimax/i2400m.h
INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
M:	Jithu Joseph <jithu.joseph@intel.com>
R:	Maurice Ma <maurice.ma@intel.com>
@@ -18907,18 +18897,6 @@ S: Supported
W:	https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
F:	drivers/net/wireless/ath/wil6210/
WIMAX STACK
M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org (subscribers-only)
S:	Supported
W:	http://linuxwimax.org
F:	Documentation/admin-guide/wimax/wimax.rst
F:	include/linux/wimax/debug.h
F:	include/net/wimax.h
F:	include/uapi/linux/wimax.h
F:	net/wimax/
WINBOND CIR DRIVER
M:	David Härdeman <david@hardeman.nu>
S:	Maintained
+0 −2
Original line number Diff line number Diff line
@@ -489,8 +489,6 @@ source "drivers/net/usb/Kconfig"

source "drivers/net/wireless/Kconfig"

source "drivers/net/wimax/Kconfig"

source "drivers/net/wan/Kconfig"

source "drivers/net/ieee802154/Kconfig"
Loading