From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kalle Valo Date: Wed, 24 Apr 2013 09:37:05 +0300 Subject: [ath9k-devel] [PATCH 4/5] ath10k: make iee80211 iface combination structures static In-Reply-To: <20130424063524.20002.20647.stgit@localhost6.localdomain6> References: <20130424063524.20002.20647.stgit@localhost6.localdomain6> Message-ID: <20130424063705.20002.71266.stgit@localhost6.localdomain6> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ath9k-devel@lists.ath9k.org Nothing modifies them. Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath10k/mac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index 60855fb..8f58dda 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -2531,7 +2531,7 @@ void ath10k_mac_destroy(struct ath10k *ar) ieee80211_free_hw(ar->hw); } -static struct ieee80211_iface_limit ath10k_if_limits[] = { +static const struct ieee80211_iface_limit ath10k_if_limits[] = { { .max = 8, .types = BIT(NL80211_IFTYPE_STATION) @@ -2541,7 +2541,7 @@ static struct ieee80211_iface_limit ath10k_if_limits[] = { } }; -static struct ieee80211_iface_combination ath10k_if_comb = { +static const struct ieee80211_iface_combination ath10k_if_comb = { .limits = ath10k_if_limits, .n_limits = ARRAY_SIZE(ath10k_if_limits), .max_interfaces = 8,