* [PATCH v2 0/3] drivers: staging: wilc1000: Fix a few style errors @ 2015-08-05 16:12 Chandra S Gorentla 2015-08-05 16:13 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla 0 siblings, 1 reply; 5+ messages in thread From: Chandra S Gorentla @ 2015-08-05 16:12 UTC (permalink / raw) To: gregkh Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel v2 - Resending as v1 patch series did not apply cleanly. These patches fixes a few style errors reported by checkpatch.pl. PATCH 3/3 should be applied after PATCH 2/3. ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions 2015-08-05 16:12 [PATCH v2 0/3] drivers: staging: wilc1000: Fix a few style errors Chandra S Gorentla @ 2015-08-05 16:13 ` Chandra S Gorentla 2015-08-05 16:13 ` [PATCH v2 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla 2015-08-05 16:26 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Greg KH 0 siblings, 2 replies; 5+ messages in thread From: Chandra S Gorentla @ 2015-08-05 16:13 UTC (permalink / raw) To: gregkh Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel, Chandra S Gorentla Added 'void' keyword in the paranthesis of function definitions, when there are no arguments to the functions. This fixes the checkpatch.pl error - "Bad function definition 'function()' should probably be function(void)". --- drivers/staging/wilc1000/linux_mon.c | 2 +- drivers/staging/wilc1000/linux_wlan.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/linux_mon.c b/drivers/staging/wilc1000/linux_mon.c index aa20421..123468a 100644 --- a/drivers/staging/wilc1000/linux_mon.c +++ b/drivers/staging/wilc1000/linux_mon.c @@ -558,7 +558,7 @@ struct net_device *WILC_WFI_init_mon_interface(const char *name, struct net_devi * @date 12 JUL 2012 * @version 1.0 */ -int WILC_WFI_deinit_mon_interface() +int WILC_WFI_deinit_mon_interface(void) { bool rollback_lock = false; diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index 3e55a8a..0a8052e 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -202,7 +202,7 @@ void printk_later(const char *format, ...) } -void dump_logs() +void dump_logs(void) { if (DebugBuffer[0]) { DebugBuffer[DEGUG_BUFFER_LENGTH] = 0; @@ -216,7 +216,7 @@ void dump_logs() } } -void Reset_WatchDogdebugger() +void Reset_WatchDogdebugger(void) { WatchDogdebuggerCounter = 0; } -- 2.5.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/3] drivers: staging: wilc1000: move { to previous line 2015-08-05 16:13 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla @ 2015-08-05 16:13 ` Chandra S Gorentla 2015-08-05 16:13 ` [PATCH v2 3/3] drivers: staging: wilc1000: remove space after '(' Chandra S Gorentla 2015-08-05 16:26 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Greg KH 1 sibling, 1 reply; 5+ messages in thread From: Chandra S Gorentla @ 2015-08-05 16:13 UTC (permalink / raw) To: gregkh Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel, Chandra S Gorentla Moved the opening brace of code blocks to the previous lines. This fixes the checkpatch.pl error - "that open brace { should be on the previous line". --- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index c2ef46f..779ec5a 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -1205,8 +1205,7 @@ static int WILC_WFI_add_key(struct wiphy *wiphy, struct net_device *netdev, u8 k - if (!pairwise) - { + if (!pairwise) { if (params->cipher == WLAN_CIPHER_SUITE_TKIP) u8gmode = ENCRYPT_ENABLED | WPA | TKIP; else @@ -1304,8 +1303,7 @@ static int WILC_WFI_add_key(struct wiphy *wiphy, struct net_device *netdev, u8 k { u8mode = 0; - if (!pairwise) - { + if (!pairwise) { if (params->key_len > 16 && params->cipher == WLAN_CIPHER_SUITE_TKIP) { /* swap the tx mic by rx mic */ pu8RxMic = params->key + 24; @@ -1531,8 +1529,7 @@ static int WILC_WFI_get_key(struct wiphy *wiphy, struct net_device *netdev, u8 k priv = wiphy_priv(wiphy); - if (!pairwise) - { + if (!pairwise) { PRINT_D(CFG80211_DBG, "Getting group key idx: %x\n", key_index); key_params.key = priv->wilc_gtk[key_index]->key; -- 2.5.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 3/3] drivers: staging: wilc1000: remove space after '(' 2015-08-05 16:13 ` [PATCH v2 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla @ 2015-08-05 16:13 ` Chandra S Gorentla 0 siblings, 0 replies; 5+ messages in thread From: Chandra S Gorentla @ 2015-08-05 16:13 UTC (permalink / raw) To: gregkh Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel, Chandra S Gorentla The character ' ' is removed after the character '('. This fixes the checkpatch.pl error - "space prohibited after that open parenthesis '('". --- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index 779ec5a..c886891 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -1675,7 +1675,7 @@ static int WILC_WFI_get_station(struct wiphy *wiphy, struct net_device *dev, * kernel version 3.0.0 */ sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL) | - BIT( NL80211_STA_INFO_RX_PACKETS) | + BIT(NL80211_STA_INFO_RX_PACKETS) | BIT(NL80211_STA_INFO_TX_PACKETS) | BIT(NL80211_STA_INFO_TX_FAILED) | BIT(NL80211_STA_INFO_TX_BITRATE); -- 2.5.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions 2015-08-05 16:13 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla 2015-08-05 16:13 ` [PATCH v2 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla @ 2015-08-05 16:26 ` Greg KH 1 sibling, 0 replies; 5+ messages in thread From: Greg KH @ 2015-08-05 16:26 UTC (permalink / raw) To: Chandra S Gorentla Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel On Wed, Aug 05, 2015 at 09:43:00PM +0530, Chandra S Gorentla wrote: > Added 'void' keyword in the paranthesis of function definitions, when > there are no arguments to the functions. This fixes the checkpatch.pl > error - "Bad function definition 'function()' should probably be > function(void)". > > --- > drivers/staging/wilc1000/linux_mon.c | 2 +- > drivers/staging/wilc1000/linux_wlan.c | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) Hi, This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him a patch that has triggered this response. He used to manually respond to these common problems, but in order to save his sanity (he kept writing the same thing over and over, yet to different people), I was created. Hopefully you will not take offence and will fix the problem in your patch and resubmit it so that it can be accepted into the Linux kernel tree. You are receiving this message because of the following common error(s) as indicated below: - Your patch does not have a Signed-off-by: line. Please read the kernel file, Documentation/SubmittingPatches and resend it after adding that line. Note, the line needs to be in the body of the email, before the patch, not at the bottom of the patch or in the email signature. If you wish to discuss this problem further, or you have questions about how to resolve this issue, please feel free to respond to this email and Greg will reply once he has dug out from the pending patches received from other developers. thanks, greg k-h's patch email bot ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-08-05 16:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-05 16:12 [PATCH v2 0/3] drivers: staging: wilc1000: Fix a few style errors Chandra S Gorentla
2015-08-05 16:13 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla
2015-08-05 16:13 ` [PATCH v2 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla
2015-08-05 16:13 ` [PATCH v2 3/3] drivers: staging: wilc1000: remove space after '(' Chandra S Gorentla
2015-08-05 16:26 ` [PATCH v2 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Greg KH
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox