diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2010-10-02 05:31:05 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-05 13:35:27 -0400 |
commit | c4c18a9dc16095fc8ada423f1e6ff3830d56d37c (patch) | |
tree | 33789d6aa4862e6fbb693ea2ff2556e0ea0cb4a2 | |
parent | d4ce3a5ea16f82d73922b7bfb8a177e371493ffb (diff) |
rt2x00: add field definitions for the TBTT_SYNC_CFG register
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h index f02ea129680e..4930d29e1377 100644 --- a/drivers/net/wireless/rt2x00/rt2800.h +++ b/drivers/net/wireless/rt2x00/rt2800.h | |||
@@ -710,8 +710,14 @@ | |||
710 | 710 | ||
711 | /* | 711 | /* |
712 | * TBTT_SYNC_CFG: | 712 | * TBTT_SYNC_CFG: |
713 | * BCN_AIFSN: Beacon AIFSN after TBTT interrupt in slots | ||
714 | * BCN_CWMIN: Beacon CWMin after TBTT interrupt in slots | ||
713 | */ | 715 | */ |
714 | #define TBTT_SYNC_CFG 0x1118 | 716 | #define TBTT_SYNC_CFG 0x1118 |
717 | #define TBTT_SYNC_CFG_TBTT_ADJUST FIELD32(0x000000ff) | ||
718 | #define TBTT_SYNC_CFG_BCN_EXP_WIN FIELD32(0x0000ff00) | ||
719 | #define TBTT_SYNC_CFG_BCN_AIFSN FIELD32(0x000f0000) | ||
720 | #define TBTT_SYNC_CFG_BCN_CWMIN FIELD32(0x00f00000) | ||
715 | 721 | ||
716 | /* | 722 | /* |
717 | * TSF_TIMER_DW0: Local lsb TSF timer, read-only | 723 | * TSF_TIMER_DW0: Local lsb TSF timer, read-only |