Michal Kazior <michal.kazior@xxxxxxxxx> writes: > Signed-off-by: Michal Kazior <michal.kazior@xxxxxxxxx> Empty commit log. > --- > drivers/net/wireless/ath/ath10k/mac.c | 25 +++++++++++++++---------- > 1 file changed, 15 insertions(+), 10 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c > index 7415a60..4b7c949 100644 > --- a/drivers/net/wireless/ath/ath10k/mac.c > +++ b/drivers/net/wireless/ath/ath10k/mac.c > @@ -1421,6 +1421,19 @@ static u8 ath10k_tx_h_get_tid(struct ieee80211_hdr *hdr) > return ieee80211_get_qos_ctl(hdr)[0] & IEEE80211_QOS_CTL_TID_MASK; > } > > +static u8 ath10k_tx_h_get_vdev_id(struct ath10k *ar, > + struct ieee80211_tx_info *info) > +{ > + if (info->control.vif) > + return ath10k_vif_to_arvif(info->control.vif)->vdev_id; > + > + if (ar->monitor_enabled) > + return ar->monitor_vdev_id; > + > + ath10k_warn("could not resolve vdev id\n"); > + return 0; > +} Empty line before return would be nice. -- Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html