linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 1/2] mac80211: VHT peer STA caps
@ 2012-10-03  4:30 Mahesh Palivela
  2012-10-10  8:26 ` Johannes Berg
  2012-10-10 10:53 ` Johannes Berg
  0 siblings, 2 replies; 3+ messages in thread
From: Mahesh Palivela @ 2012-10-03  4:30 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless@vger.kernel.org

From: Mahesh Palivela <maheshp@posedge.com>

Rename vht_capabilities to vht_cap

Signed-off-by: Mahesh Palivela <maheshp@posedge.com>
---

  include/linux/ieee80211.h |    2 +-
  net/mac80211/main.c       |    2 +-
  net/mac80211/mlme.c       |    4 ++--
  net/mac80211/util.c       |    4 ++--
  4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h
index 2385119..afd12d9 100644
--- a/include/linux/ieee80211.h
+++ b/include/linux/ieee80211.h
@@ -1109,7 +1109,7 @@ struct ieee80211_ht_operation {

  #define VHT_MCS_SUPPORTED_SET_SIZE      8

-struct ieee80211_vht_capabilities {
+struct ieee80211_vht_cap {
  	__le32 vht_capabilities_info;
  	u8 vht_supported_mcs_set[VHT_MCS_SUPPORTED_SET_SIZE];
  } __packed;
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index c80c449..0ec170f 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -832,7 +832,7 @@ int ieee80211_register_hw(struct ieee80211_hw *hw)

  	if (supp_vht)
  		local->scan_ies_len +=
-			2 + sizeof(struct ieee80211_vht_capabilities);
+			2 + sizeof(struct ieee80211_vht_cap);

  	if (!local->ops->hw_scan) {
  		/* For hw_scan, driver needs to set these up. */
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 2dbd9e1..85a7005 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -343,7 +343,7 @@ static void ieee80211_add_vht_ie(struct 
ieee80211_sub_if_data *sdata,
  	cap = vht_cap.cap;

  	/* reserve and fill IE */
-	pos = skb_put(skb, sizeof(struct ieee80211_vht_capabilities) + 2);
+	pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
  	ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
  }

@@ -392,7 +392,7 @@ static void ieee80211_send_assoc(struct 
ieee80211_sub_if_data *sdata)
  			4 + /* power capability */
  			2 + 2 * sband->n_channels + /* supported channels */
  			2 + sizeof(struct ieee80211_ht_cap) + /* HT */
-			2 + sizeof(struct ieee80211_vht_capabilities) + /* VHT */
+			2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
  			assoc_data->ie_len + /* extra IEs */
  			9, /* WMM */
  			GFP_KERNEL);
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index 22ca350..4af69cc 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -1788,8 +1788,8 @@ u8 *ieee80211_ie_build_vht_cap(u8 *pos, struct 
ieee80211_sta_vht_cap *vht_cap,
  	__le32 tmp;

  	*pos++ = WLAN_EID_VHT_CAPABILITY;
-	*pos++ = sizeof(struct ieee80211_vht_capabilities);
-	memset(pos, 0, sizeof(struct ieee80211_vht_capabilities));
+	*pos++ = sizeof(struct ieee80211_vht_cap);
+	memset(pos, 0, sizeof(struct ieee80211_vht_cap));

  	/* capability flags */
  	tmp = cpu_to_le32(cap);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v4 1/2] mac80211: VHT peer STA caps
  2012-10-03  4:30 [PATCH v4 1/2] mac80211: VHT peer STA caps Mahesh Palivela
@ 2012-10-10  8:26 ` Johannes Berg
  2012-10-10 10:53 ` Johannes Berg
  1 sibling, 0 replies; 3+ messages in thread
From: Johannes Berg @ 2012-10-10  8:26 UTC (permalink / raw)
  To: Mahesh Palivela; +Cc: linux-wireless@vger.kernel.org

On Wed, 2012-10-03 at 10:00 +0530, Mahesh Palivela wrote:
> From: Mahesh Palivela <maheshp@posedge.com>
> 
> Rename vht_capabilities to vht_cap

Applied, but I had to fix up some whitespace damage from your mailer
(two spaces in front, line wrapping)

johannes


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v4 1/2] mac80211: VHT peer STA caps
  2012-10-03  4:30 [PATCH v4 1/2] mac80211: VHT peer STA caps Mahesh Palivela
  2012-10-10  8:26 ` Johannes Berg
@ 2012-10-10 10:53 ` Johannes Berg
  1 sibling, 0 replies; 3+ messages in thread
From: Johannes Berg @ 2012-10-10 10:53 UTC (permalink / raw)
  To: Mahesh Palivela; +Cc: linux-wireless@vger.kernel.org

On Wed, 2012-10-03 at 10:00 +0530, Mahesh Palivela wrote:
> From: Mahesh Palivela <maheshp@posedge.com>
> 
> Rename vht_capabilities to vht_cap
> 
> Signed-off-by: Mahesh Palivela <maheshp@posedge.com>
> ---
> 
>   include/linux/ieee80211.h |    2 +-
>   net/mac80211/main.c       |    2 +-
>   net/mac80211/mlme.c       |    4 ++--
>   net/mac80211/util.c       |    4 ++--
>   4 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h
> index 2385119..afd12d9 100644
> --- a/include/linux/ieee80211.h
> +++ b/include/linux/ieee80211.h
> @@ -1109,7 +1109,7 @@ struct ieee80211_ht_operation {
> 
>   #define VHT_MCS_SUPPORTED_SET_SIZE      8
> 
> -struct ieee80211_vht_capabilities {
> +struct ieee80211_vht_cap {
>   	__le32 vht_capabilities_info;
>   	u8 vht_supported_mcs_set[VHT_MCS_SUPPORTED_SET_SIZE];
>   } __packed;

This patch doesn't rename any fields

johannes


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-10 10:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-03  4:30 [PATCH v4 1/2] mac80211: VHT peer STA caps Mahesh Palivela
2012-10-10  8:26 ` Johannes Berg
2012-10-10 10:53 ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).