Commit 5be3bda8 authored by Johannes Berg's avatar Johannes Berg Committed by David S. Miller

b43legacy: include full 64-bit timestamp in monitor mode

When monitor mode is enabled, this will make b43legacy read out
the full 64-bit MAC time from the chip for each received packet.

This patch has been ported from b43.
Signed-off-by: default avatarStefano Brivio <stefano.brivio@polimi.it>
Cc: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 125c5cc2
...@@ -599,6 +599,8 @@ struct b43legacy_wl { ...@@ -599,6 +599,8 @@ struct b43legacy_wl {
/* List of all wireless devices on this chip */ /* List of all wireless devices on this chip */
struct list_head devlist; struct list_head devlist;
u8 nr_devs; u8 nr_devs;
bool radiotap_enabled;
}; };
/* Pointers to the firmware data and meta information about it. */ /* Pointers to the firmware data and meta information about it. */
......
...@@ -2553,6 +2553,8 @@ static int b43legacy_op_dev_config(struct ieee80211_hw *hw, ...@@ -2553,6 +2553,8 @@ static int b43legacy_op_dev_config(struct ieee80211_hw *hw,
b43legacy_short_slot_timing_disable(dev); b43legacy_short_slot_timing_disable(dev);
} }
dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
/* Adjust the desired TX power level. */ /* Adjust the desired TX power level. */
if (conf->power_level != 0) { if (conf->power_level != 0) {
if (conf->power_level != phy->power_level) { if (conf->power_level != phy->power_level) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment