diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-08-17 00:15:49 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-08-22 14:30:25 -0400 |
commit | 91a3fa39ddf2f85a15cb20ccc3a54c1f0497af1e (patch) | |
tree | 3589e840381bf45d07d2925b8bb706cf41fbdf24 /drivers/net/wireless/rt2x00/rt2800.h | |
parent | 69b307a48a5e10d5fd53dbbfae1c700da356bd5d (diff) | |
download | blackbird-op-linux-91a3fa39ddf2f85a15cb20ccc3a54c1f0497af1e.tar.gz blackbird-op-linux-91a3fa39ddf2f85a15cb20ccc3a54c1f0497af1e.zip |
rt2x00: rt2800: rename HW_BEACON_OFFSET macro
The name of the HW_BEACON_OFFSET macro is a
bit confusing. It returns with one of the
HW_BEACON_BASE* values, so rename the macro
to HW_BEACON_BASE to reflect that.
The patch contains no functional changes.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2800.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h index a3132414ac9f..6e69b961909f 100644 --- a/drivers/net/wireless/rt2x00/rt2800.h +++ b/drivers/net/wireless/rt2x00/rt2800.h @@ -2019,7 +2019,7 @@ struct mac_iveiv_entry { #define HW_BEACON_BASE6 0x5dc0 #define HW_BEACON_BASE7 0x5bc0 -#define HW_BEACON_OFFSET(__index) \ +#define HW_BEACON_BASE(__index) \ (((__index) < 4) ? (HW_BEACON_BASE0 + (__index * 0x0200)) : \ (((__index) < 6) ? (HW_BEACON_BASE4 + ((__index - 4) * 0x0200)) : \ (HW_BEACON_BASE6 - ((__index - 6) * 0x0200)))) |