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

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

staging: csr: remove driver



This driver is not being updated as the specifications are not able to
be gotten from CSR or anyone else.  Without those, getting this driver
into proper mergable shape is going to be impossible.  So remove the
driver from the tree.

If the specifications ever become available, this patch can be reverted
and the driver fixed up properly.

Reported-by: default avatarLidza Louina <lidza.louina@gmail.com>
Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>
Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com>
Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com>
Cc: Riku Mettälä <riku.mettala@bluegiga.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ad81f054
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -118,8 +118,6 @@ source "drivers/staging/ozwpan/Kconfig"


source "drivers/staging/gdm72xx/Kconfig"
source "drivers/staging/gdm72xx/Kconfig"


source "drivers/staging/csr/Kconfig"

source "drivers/staging/silicom/Kconfig"
source "drivers/staging/silicom/Kconfig"


source "drivers/staging/ced1401/Kconfig"
source "drivers/staging/ced1401/Kconfig"
+0 −1
Original line number Original line Diff line number Diff line
@@ -52,7 +52,6 @@ obj-$(CONFIG_MFD_NVEC) += nvec/
obj-$(CONFIG_ANDROID)		+= android/
obj-$(CONFIG_ANDROID)		+= android/
obj-$(CONFIG_USB_WPAN_HCD)	+= ozwpan/
obj-$(CONFIG_USB_WPAN_HCD)	+= ozwpan/
obj-$(CONFIG_WIMAX_GDM72XX)	+= gdm72xx/
obj-$(CONFIG_WIMAX_GDM72XX)	+= gdm72xx/
obj-$(CONFIG_CSR_WIFI)		+= csr/
obj-$(CONFIG_NET_VENDOR_SILICOM)	+= silicom/
obj-$(CONFIG_NET_VENDOR_SILICOM)	+= silicom/
obj-$(CONFIG_CED1401)		+= ced1401/
obj-$(CONFIG_CED1401)		+= ced1401/
obj-$(CONFIG_DRM_IMX)		+= imx-drm/
obj-$(CONFIG_DRM_IMX)		+= imx-drm/

drivers/staging/csr/Kconfig

deleted100644 → 0
+0 −9
Original line number Original line Diff line number Diff line
config CSR_WIFI
	tristate "CSR wireless driver"
	depends on MMC && CFG80211_WEXT && INET
	select WIRELESS_EXT
	select WEXT_PRIV
	help
	  Driver for the CSR wireless SDIO device.

	  If unsure, select N.

drivers/staging/csr/LICENSE.txt

deleted100644 → 0
+0 −39
Original line number Original line Diff line number Diff line
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

Except as contained in this notice, the names of above-listed
copyright holders and the names of any contributors shall not be used
in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
CONTRIBUTORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Alternatively, this software may be distributed under the terms of the
GNU General Public License ("GPL") version 2 as published
by the Free Software Foundation.

As a special exception, if other files instantiate templates or use
macros or inline functions from this file, or you compile this file
and link it with other works to produce a work based on this file,
this file does not by itself cause the resulting work to be covered by
the GNU General Public License. However the source code for this file
must still be made available in accordance with section (3) of the GNU
General Public License.

This exception does not invalidate any other reasons why a work based
on this file might be covered by the GNU General Public License.

drivers/staging/csr/Makefile

deleted100644 → 0
+0 −73
Original line number Original line Diff line number Diff line
ccflags-y	:= -DCSR_SME_USERSPACE -DCSR_SUPPORT_SME -DREMOTE_SYS_SAP -DCSR_WIFI_SECURITY_WAPI_ENABLE -DENABLE_SHUTDOWN -DUNIFI_DEBUG
ccflags-y	+= -DSDIO_EXPORTS_STRUCT_DEVICE -DCSR_WIFI_SUPPORT_MMC_DRIVER -DCSR_WIFI_SINGLE_FUNCTION -DCSR_WIFI_SPLIT_PATCH
ccflags-y	+= -DCSR_SUPPORT_WEXT -DREMOTE_SYS_SAP  -DREMOTE_MGT_SAP -DCSR_WIFI_SECURITY_WAPI_ENABLE -DCSR_WIFI_SECURITY_WAPI_QOSCTRL_MIC_WORKAROUND -DENABLE_SHUTDOWN -DCSR_WIFI_NME_ENABLE -DCSR_WIFI_AP_ENABLE -DCSR_SUPPORT_WEXT_AP -DCSR_WIFI_REQUEUE_PACKET_TO_HAL

obj-$(CONFIG_CSR_WIFI)	+= csr_wifi.o
obj-$(CONFIG_CSR_WIFI)	+= csr_helper.o

csr_wifi-y :=	bh.o				\
		data_tx.o			\
		drv.o				\
		firmware.o			\
		inet.o				\
		init_hw.o			\
		io.o				\
		monitor.o			\
		netdev.o			\
		os.o				\
		putest.o			\
		sdio_events.o			\
		sdio_mmc.o			\
		sdio_stubs.o			\
		sme_blocking.o			\
		ul_int.o			\
		unifi_dbg.o			\
		unifi_event.o			\
		unifi_pdu_processing.o		\
		unifi_sme.o			\
		csr_wifi_hip_card_sdio.o	\
		csr_wifi_hip_card_sdio_intr.o	\
		csr_wifi_hip_card_sdio_mem.o	\
		csr_wifi_hip_chiphelper.o	\
		csr_wifi_hip_download.o		\
		csr_wifi_hip_dump.o		\
		csr_wifi_hip_packing.o		\
		csr_wifi_hip_send.o		\
		csr_wifi_hip_signals.o		\
		csr_wifi_hip_ta_sampling.o	\
		csr_wifi_hip_udi.o		\
		csr_wifi_hip_unifi_signal_names.o	\
		csr_wifi_hip_xbv.o		\
		csr_wifi_nme_ap_converter_init.o		\
		csr_wifi_nme_ap_free_downstream_contents.o	\
		csr_wifi_nme_ap_free_upstream_contents.o	\
		csr_wifi_nme_ap_serialize.o	\
		csr_wifi_nme_ap_sef.o		\
		csr_wifi_router_ctrl_sef.o	\
		csr_wifi_router_sef.o		\
		csr_wifi_router_transport.o	\
		csr_wifi_sme_sef.o		\
		csr_wifi_sme_converter_init.o	\
		csr_wifi_sme_free_downstream_contents.o		\
		csr_wifi_sme_free_upstream_contents.o		\
		csr_wifi_sme_serialize.o			\
		csr_wifi_router_ctrl_converter_init.o		\
		csr_wifi_router_ctrl_free_downstream_contents.o	\
		csr_wifi_router_ctrl_free_upstream_contents.o	\
		csr_wifi_router_ctrl_serialize.o		\
		csr_wifi_router_converter_init.o		\
		csr_wifi_router_free_downstream_contents.o	\
		csr_wifi_router_free_upstream_contents.o	\
		csr_wifi_router_serialize.o			\
		sme_mgt.o			\
		sme_sys.o			\
		sme_userspace.o 		\
		sme_wext.o			\
		wext_events.o

csr_helper-y :=	csr_time.o			\
		csr_util.o			\
		csr_framework_ext.o		\
		csr_wifi_serialize_primitive_types.o	\
		csr_serialize_primitive_types.o	\
		csr_msgconv.o
Loading