Clear tx status
void ieee80211_tx_info_clear_status(struct ieee80211_tx_info * info);
info
The struct ieee80211_tx_info to be cleared.
When the driver passes an skb back to mac80211, it must report a number of things in TX status. This function clears everything in the TX status but the rate control information (it does clear the count since you need to fill that in anyway).
You can only use this function if you do NOT use info->driver_data! Use info->rate_driver_data instead if you need only the less space that allows.
Johannes Berg <[email protected]>
Author.