Return-path: Received: from mail-lf0-f53.google.com ([209.85.215.53]:33111 "EHLO mail-lf0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965248AbcAUNpt (ORCPT ); Thu, 21 Jan 2016 08:45:49 -0500 Received: by mail-lf0-f53.google.com with SMTP id m198so26896419lfm.0 for ; Thu, 21 Jan 2016 05:45:49 -0800 (PST) From: Michal Kazior To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Michal Kazior Subject: [PATCH 09/13] ath10k: add txq placeholder Date: Thu, 21 Jan 2016 14:46:42 +0100 Message-Id: <1453384006-31907-10-git-send-email-michal.kazior@tieto.com> (sfid-20160121_144558_866845_F47454F5) In-Reply-To: <1453384006-31907-1-git-send-email-michal.kazior@tieto.com> References: <1453384006-31907-1-git-send-email-michal.kazior@tieto.com> Sender: linux-wireless-owner@vger.kernel.org List-ID: Driver will make use of this in the future. Signed-off-by: Michal Kazior --- drivers/net/wireless/ath/ath10k/core.h | 4 ++++ drivers/net/wireless/ath/ath10k/mac.c | 1 + 2 files changed, 5 insertions(+) diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h index bc0e546c79d4..d09d6fdf1149 100644 --- a/drivers/net/wireless/ath/ath10k/core.h +++ b/drivers/net/wireless/ath/ath10k/core.h @@ -304,6 +304,10 @@ struct ath10k_peer { struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1]; }; +struct ath10k_txq { + /* TBD */ +}; + struct ath10k_sta { struct ath10k_vif *arvif; diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index d9566ba70af3..205ccf3760a3 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -7548,6 +7548,7 @@ int ath10k_mac_register(struct ath10k *ar) ar->hw->vif_data_size = sizeof(struct ath10k_vif); ar->hw->sta_data_size = sizeof(struct ath10k_sta); + ar->hw->txq_data_size = sizeof(struct ath10k_txq); ar->hw->max_listen_interval = ATH10K_MAX_HW_LISTEN_INTERVAL; -- 2.1.4