From: Greg KH <gregkh@linuxfoundation.org>
To: Chaehyun Lim <chaehyun.lim@gmail.com>
Cc: rachel.kim@atmel.com, devel@driverdev.osuosl.org,
chris.park@atmel.com, linux-wireless@vger.kernel.org,
johnny.kim@atmel.com, tony.cho@atmel.com, leo.kim@atmel.com
Subject: Re: [PATCH V2 01/31] staging: wilc1000: rename WILC_WFI_CfgSetChannel
Date: Fri, 11 Sep 2015 19:36:47 -0700 [thread overview]
Message-ID: <20150912023647.GA5330@kroah.com> (raw)
In-Reply-To: <1441912470-3371-1-git-send-email-chaehyun.lim@gmail.com>
On Fri, Sep 11, 2015 at 04:14:00AM +0900, Chaehyun Lim wrote:
> This patch replaces WILC_WFI_CfgSetChannel with
> wilc_set_channel to avoid CamelCase.
>
> Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
> ---
> V2: to make function name simple
>
> drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
> index cf76a33..3149fd8 100644
> --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
> +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
> @@ -677,7 +677,7 @@ static void CfgConnectResult(tenuConnDisconnEvent enuConnDisconnEvent,
>
>
> /**
> - * @brief WILC_WFI_CfgSetChannel
> + * @brief wilc_set_channel
> * @details Set channel for a given wireless interface. Some devices
> * may support multi-channel operation (by channel hopping) so cfg80211
> * doesn't verify much. Note, however, that the passed netdev may be
> @@ -689,8 +689,8 @@ static void CfgConnectResult(tenuConnDisconnEvent enuConnDisconnEvent,
> * @date 01 MAR 2012
> * @version 1.0
> */
> -static int WILC_WFI_CfgSetChannel(struct wiphy *wiphy,
> - struct cfg80211_chan_def *chandef)
> +static int wilc_set_channel(struct wiphy *wiphy,
> + struct cfg80211_chan_def *chandef)
static functions do not need a "wilc_" prefix. Just name it
"set_channel()"
Can you redo this series based on that, rebase on my staging-testing git
branch as things are changing fast in this driver, and then resend?
thanks,
greg k-h
prev parent reply other threads:[~2015-09-12 4:35 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-10 19:14 [PATCH V2 01/31] staging: wilc1000: rename WILC_WFI_CfgSetChannel Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 02/31] staging: wilc1000: rename WILC_WFI_CfgScan Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 03/31] staging: wilc1000: rename WILC_WFI_CfgConnect Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 04/31] staging: wilc1000: rename WILC_WFI_disconnect Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 05/31] staging: wilc1000: rename WILC_WFI_add_key Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 06/31] staging: wilc1000: rename WILC_WFI_del_key Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 07/31] staging: wilc1000: rename WILC_WFI_get_key Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 08/31] staging: wilc1000: rename WILC_WFI_set_default_key Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 09/31] staging: wilc1000: rename WILC_WFI_add_virt_intf Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 10/31] staging: wilc1000: rename WILC_WFI_del_virt_intf Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 11/31] staging: wilc1000: rename WILC_WFI_change_virt_intf Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 12/31] staging: wilc1000: rename WILC_WFI_start_ap Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 13/31] staging: wilc1000: remove WILC_WFI_change_beacon Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 14/31] staging: wilc1000: rename WILC_WFI_stop_ap Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 15/31] staging: wilc1000: rename WILC_WFI_add_station Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 16/31] staging: wilc1000: rename WILC_WFI_del_station Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 17/31] staging: wilc1000: rename WILC_WFI_change_station Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 18/31] staging: wilc1000: rename WILC_WFI_get_station Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 19/31] staging: wilc1000: rename WILC_WFI_dump_station Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 20/31] staging: wilc1000: rename WILC_WFI_change_bss Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 21/31] staging: wilc1000: rename WILC_WFI_set_wiphy_params Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 22/31] staging: wilc1000: rename WILC_WFI_set_pmksa Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 23/31] staging: wilc1000: rename WILC_WFI_del_pmksa Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 24/31] staging: wilc1000: rename WILC_WFI_flush_pmksa Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 25/31] staging: wilc1000: rename WILC_WFI_remain_on_channel Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 26/31] staging: wilc1000: rename WILC_WFI_cancel_remain_on_channel Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 27/31] staging: wilc1000: rename WILC_WFI_mgmt_tx_cancel_wait Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 28/31] staging: wilc1000: rename WILC_WFI_mgmt_tx Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 29/31] staging: wilc1000: rename WILC_WFI_frame_register Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 30/31] staging: wilc1000: rename WILC_WFI_set_power_mgmt Chaehyun Lim
2015-09-10 19:14 ` [PATCH V2 31/31] staging: wilc1000: rename WILC_WFI_set_cqm_rssi_config Chaehyun Lim
2015-09-12 2:36 ` Greg KH [this message]
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=20150912023647.GA5330@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=chaehyun.lim@gmail.com \
--cc=chris.park@atmel.com \
--cc=devel@driverdev.osuosl.org \
--cc=johnny.kim@atmel.com \
--cc=leo.kim@atmel.com \
--cc=linux-wireless@vger.kernel.org \
--cc=rachel.kim@atmel.com \
--cc=tony.cho@atmel.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;
as well as URLs for NNTP newsgroup(s).