diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-02-23 09:06:08 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-02-23 16:25:29 -0500 |
commit | 6ebacbb79d2d05978ba50a24d8cbe2a76ff2014c (patch) | |
tree | d67c83455f81132bbed9c421c55f53e6e61169af /drivers/net/wireless/b43legacy/xmit.c | |
parent | f3e85b9edeaf8ad0446a37a40c873f3f8898c57d (diff) |
mac80211: rename RX_FLAG_TSFT
The flag isn't very descriptive -- the intention
is that the driver provides a TSF timestamp at
the beginning of the MPDU -- make that clearer
by renaming the flag to RX_FLAG_MACTIME_MPDU.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43legacy/xmit.c')
-rw-r--r-- | drivers/net/wireless/b43legacy/xmit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43legacy/xmit.c b/drivers/net/wireless/b43legacy/xmit.c index 7d177d97f1f7..3a95541708a6 100644 --- a/drivers/net/wireless/b43legacy/xmit.c +++ b/drivers/net/wireless/b43legacy/xmit.c | |||
@@ -572,7 +572,7 @@ void b43legacy_rx(struct b43legacy_wldev *dev, | |||
572 | status.mactime += mactime; | 572 | status.mactime += mactime; |
573 | if (low_mactime_now <= mactime) | 573 | if (low_mactime_now <= mactime) |
574 | status.mactime -= 0x10000; | 574 | status.mactime -= 0x10000; |
575 | status.flag |= RX_FLAG_TSFT; | 575 | status.flag |= RX_FLAG_MACTIME_MPDU; |
576 | } | 576 | } |
577 | 577 | ||
578 | chanid = (chanstat & B43legacy_RX_CHAN_ID) >> | 578 | chanid = (chanstat & B43legacy_RX_CHAN_ID) >> |