public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mukesh Ojha <mojha@codeaurora.org>
To: Colin King <colin.king@canonical.com>,
	Amitkumar Karwar <amitkarwar@gmail.com>,
	Nishant Sarmukadam <nishants@marvell.com>,
	Ganapathi Bhat <gbhat@marvell.com>,
	Xinming Hu <huxinming820@gmail.com>,
	Kalle Valo <kvalo@codeaurora.org>,
	"David S . Miller" <davem@davemloft.net>,
	linux-wireless@vger.kernel.org, netdev@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mwifiex: fix spelling mistake "capabilties" -> "capabilities"
Date: Tue, 16 Apr 2019 12:32:39 +0530	[thread overview]
Message-ID: <9347fb11-1c45-3db5-da6b-593dcdc4c2f9@codeaurora.org> (raw)
In-Reply-To: <20190415142649.18452-1-colin.king@canonical.com>


On 4/15/2019 7:56 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There various spelling mistakes in function names and in message
> text. Fix these.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>


I am hoping you have done the compilation test.

Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh

> ---
>   drivers/net/wireless/marvell/mwifiex/sta_event.c | 12 ++++++------
>   drivers/net/wireless/marvell/mwifiex/uap_event.c |  8 ++++----
>   2 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/net/wireless/marvell/mwifiex/sta_event.c b/drivers/net/wireless/marvell/mwifiex/sta_event.c
> index a327fc5b36e3..8b3123cb84c8 100644
> --- a/drivers/net/wireless/marvell/mwifiex/sta_event.c
> +++ b/drivers/net/wireless/marvell/mwifiex/sta_event.c
> @@ -27,9 +27,9 @@
>   
>   #define MWIFIEX_IBSS_CONNECT_EVT_FIX_SIZE    12
>   
> -static int mwifiex_check_ibss_peer_capabilties(struct mwifiex_private *priv,
> -					       struct mwifiex_sta_node *sta_ptr,
> -					       struct sk_buff *event)
> +static int mwifiex_check_ibss_peer_capabilities(struct mwifiex_private *priv,
> +					        struct mwifiex_sta_node *sta_ptr,
> +					        struct sk_buff *event)
>   {
>   	int evt_len, ele_len;
>   	u8 *curr;
> @@ -42,7 +42,7 @@ static int mwifiex_check_ibss_peer_capabilties(struct mwifiex_private *priv,
>   	evt_len = event->len;
>   	curr = event->data;
>   
> -	mwifiex_dbg_dump(priv->adapter, EVT_D, "ibss peer capabilties:",
> +	mwifiex_dbg_dump(priv->adapter, EVT_D, "ibss peer capabilities:",
>   			 event->data, event->len);
>   
>   	skb_push(event, MWIFIEX_IBSS_CONNECT_EVT_FIX_SIZE);
> @@ -937,8 +937,8 @@ int mwifiex_process_sta_event(struct mwifiex_private *priv)
>   			    ibss_sta_addr);
>   		sta_ptr = mwifiex_add_sta_entry(priv, ibss_sta_addr);
>   		if (sta_ptr && adapter->adhoc_11n_enabled) {
> -			mwifiex_check_ibss_peer_capabilties(priv, sta_ptr,
> -							    adapter->event_skb);
> +			mwifiex_check_ibss_peer_capabilities(priv, sta_ptr,
> +							     adapter->event_skb);
>   			if (sta_ptr->is_11n_enabled)
>   				for (i = 0; i < MAX_NUM_TID; i++)
>   					sta_ptr->ampdu_sta[i] =
> diff --git a/drivers/net/wireless/marvell/mwifiex/uap_event.c b/drivers/net/wireless/marvell/mwifiex/uap_event.c
> index ca759d9c0253..86bfa1b9ef9d 100644
> --- a/drivers/net/wireless/marvell/mwifiex/uap_event.c
> +++ b/drivers/net/wireless/marvell/mwifiex/uap_event.c
> @@ -23,8 +23,8 @@
>   
>   #define MWIFIEX_BSS_START_EVT_FIX_SIZE    12
>   
> -static int mwifiex_check_uap_capabilties(struct mwifiex_private *priv,
> -					 struct sk_buff *event)
> +static int mwifiex_check_uap_capabilities(struct mwifiex_private *priv,
> +					  struct sk_buff *event)
>   {
>   	int evt_len;
>   	u8 *curr;
> @@ -38,7 +38,7 @@ static int mwifiex_check_uap_capabilties(struct mwifiex_private *priv,
>   	evt_len = event->len;
>   	curr = event->data;
>   
> -	mwifiex_dbg_dump(priv->adapter, EVT_D, "uap capabilties:",
> +	mwifiex_dbg_dump(priv->adapter, EVT_D, "uap capabilities:",
>   			 event->data, event->len);
>   
>   	skb_push(event, MWIFIEX_BSS_START_EVT_FIX_SIZE);
> @@ -201,7 +201,7 @@ int mwifiex_process_uap_event(struct mwifiex_private *priv)
>   		       ETH_ALEN);
>   		if (priv->hist_data)
>   			mwifiex_hist_data_reset(priv);
> -		mwifiex_check_uap_capabilties(priv, adapter->event_skb);
> +		mwifiex_check_uap_capabilities(priv, adapter->event_skb);
>   		break;
>   	case EVENT_UAP_MIC_COUNTERMEASURES:
>   		/* For future development */

  reply	other threads:[~2019-04-16  7:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-15 14:26 [PATCH] mwifiex: fix spelling mistake "capabilties" -> "capabilities" Colin King
2019-04-16  7:02 ` Mukesh Ojha [this message]
2019-04-16  8:10   ` Colin Ian King
2019-04-25 16:55 ` Kalle Valo
  -- strict thread matches above, loose matches on Subject: below --
2018-04-28  9:36 [PATCH] mwifiex: fix spelling mistake: " Colin King

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9347fb11-1c45-3db5-da6b-593dcdc4c2f9@codeaurora.org \
    --to=mojha@codeaurora.org \
    --cc=amitkarwar@gmail.com \
    --cc=colin.king@canonical.com \
    --cc=davem@davemloft.net \
    --cc=gbhat@marvell.com \
    --cc=huxinming820@gmail.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=kvalo@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nishants@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox