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

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

Staging: remove agnx driver



The agnx driver in the staging tree is broken, does not work, and
development is dead.  The developers have asked for it to be removed
so it now is.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 02921484
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -59,8 +59,6 @@ source "drivers/staging/echo/Kconfig"

source "drivers/staging/poch/Kconfig"

source "drivers/staging/agnx/Kconfig"

source "drivers/staging/otus/Kconfig"

source "drivers/staging/rt2860/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ obj-$(CONFIG_W35UND) += winbond/
obj-$(CONFIG_PRISM2_USB)	+= wlan-ng/
obj-$(CONFIG_ECHO)		+= echo/
obj-$(CONFIG_POCH)		+= poch/
obj-$(CONFIG_AGNX)		+= agnx/
obj-$(CONFIG_OTUS)		+= otus/
obj-$(CONFIG_RT2860)		+= rt2860/
obj-$(CONFIG_RT2870)		+= rt2870/

drivers/staging/agnx/Kconfig

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
config AGNX
	tristate "Wireless Airgo AGNX support"
	depends on WLAN_80211 && MAC80211
	---help---
	  This is an experimental driver for Airgo AGNX00 wireless chip.

drivers/staging/agnx/Makefile

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
obj-$(CONFIG_AGNX)	+= agnx.o

agnx-objs :=	rf.o	\
		pci.o	\
		xmit.o	\
		table.o	\
		sta.o	\
		phy.o

drivers/staging/agnx/TODO

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
2008 7/18

The RX has can't receive OFDM packet correctly,
Guess it need be do RX calibrate.


before 2008 3/1

1: The RX get too much "CRC failed" pakets, it make the card work very unstable,
2: After running a while, the card will get infinity "RX Frame" and "Error"
interrupt, not know the root reason so far, try to fix it
3: Using two tx queue txd and txm but not only txm.
4: Set the hdr correctly.
5: Try to do recalibrate correvtly
6: To support G mode in future
7: Fix the mac address can't be readed and set correctly in BE machine.
8: Fix include and exclude FCS in promisous mode and manage mode
9: Using sta_notify to notice sta change
10: Turn on frame reception at the end of start
11: Guess the card support HW_MULTICAST_FILTER
12: The tx process should be implment atomic?
13: Using mac80211 function to control the TX&RX LED.
Loading