diff options
author | Ulrich Kunitz <kune@deine-taler.de> | 2006-08-01 17:43:35 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-08-02 14:26:51 -0400 |
commit | fde627b54ce7bef094157074f3adb9b6e1a96d4c (patch) | |
tree | 37b4faed23a48f9342b055fa539300e689439baa /drivers/net/wireless/zd1211rw/zd_chip.h | |
parent | b269825b9bb2c925bbaf4365ec9fa4c6a16e46b4 (diff) |
[PATCH] zd1211rw: Packet filter fix for managed (STA) mode
I had problems with my AVM Fritz!Box access point. It appeared
that the AP deauthorized me and the softmac didn't reconnect me.
This patch handles the problem.
Signed-off-by: Ulrich Kunitz <kune@deine-taler.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/zd1211rw/zd_chip.h')
-rw-r--r-- | drivers/net/wireless/zd1211rw/zd_chip.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/zd1211rw/zd_chip.h b/drivers/net/wireless/zd1211rw/zd_chip.h index 0eb9c8facbd3..069d2b467339 100644 --- a/drivers/net/wireless/zd1211rw/zd_chip.h +++ b/drivers/net/wireless/zd1211rw/zd_chip.h | |||
@@ -466,6 +466,9 @@ | |||
466 | #define RX_FILTER_BEACON 0x0100 | 466 | #define RX_FILTER_BEACON 0x0100 |
467 | #define RX_FILTER_DISASSOC 0x0400 | 467 | #define RX_FILTER_DISASSOC 0x0400 |
468 | #define RX_FILTER_AUTH 0x0800 | 468 | #define RX_FILTER_AUTH 0x0800 |
469 | #define AP_RX_FILTER 0x0400feff | ||
470 | #define STA_RX_FILTER 0x0000ffff | ||
471 | |||
469 | /* Monitor mode sets filter to 0xfffff */ | 472 | /* Monitor mode sets filter to 0xfffff */ |
470 | 473 | ||
471 | #define CR_ACK_TIMEOUT_EXT CTL_REG(0x0690) | 474 | #define CR_ACK_TIMEOUT_EXT CTL_REG(0x0690) |
@@ -548,9 +551,6 @@ | |||
548 | #define CR_ZD1211B_TXOP CTL_REG(0x0b20) | 551 | #define CR_ZD1211B_TXOP CTL_REG(0x0b20) |
549 | #define CR_ZD1211B_RETRY_MAX CTL_REG(0x0b28) | 552 | #define CR_ZD1211B_RETRY_MAX CTL_REG(0x0b28) |
550 | 553 | ||
551 | #define AP_RX_FILTER 0x0400feff | ||
552 | #define STA_RX_FILTER 0x0000ffff | ||
553 | |||
554 | #define CWIN_SIZE 0x007f043f | 554 | #define CWIN_SIZE 0x007f043f |
555 | 555 | ||
556 | 556 | ||