* drivers: staging: wilc1000: Fix a few style erros @ 2015-08-02 15:53 Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 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-02 15:53 UTC (permalink / raw) To: gregkh Cc: johnny.kim, rachel.kim, dean.lee, chris.park, linux-wireless, devel, linux-kernel 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 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions 2015-08-02 15:53 drivers: staging: wilc1000: Fix a few style erros Chandra S Gorentla @ 2015-08-02 15:53 ` Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla 2015-08-04 0:37 ` [PATCH 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-02 15:53 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)". Signed-off-by: Chandra S Gorentla <csgorentla@gmail.com> --- 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 d812a3b..65d60af 100644 --- a/drivers/staging/wilc1000/linux_mon.c +++ b/drivers/staging/wilc1000/linux_mon.c @@ -567,7 +567,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 5a794df..443be4e 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -215,7 +215,7 @@ void printk_later(const char *format, ...) } -void dump_logs() +void dump_logs(void) { if (DebugBuffer[0]) { DebugBuffer[DEGUG_BUFFER_LENGTH] = 0; @@ -229,7 +229,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 2/3] drivers: staging: wilc1000: move { to previous line 2015-08-02 15:53 ` [PATCH 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla @ 2015-08-02 15:53 ` Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 3/3] drivers: staging: wilc1000: remove space after '(' Chandra S Gorentla 2015-08-04 0:37 ` [PATCH 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-02 15:53 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". Signed-off-by: Chandra S Gorentla <csgorentla@gmail.com> --- 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 1d0b7f8..b995056 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 3/3] drivers: staging: wilc1000: remove space after '(' 2015-08-02 15:53 ` [PATCH 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla @ 2015-08-02 15:53 ` Chandra S Gorentla 0 siblings, 0 replies; 5+ messages in thread From: Chandra S Gorentla @ 2015-08-02 15:53 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 '('". Signed-off-by: Chandra S Gorentla <csgorentla@gmail.com> --- 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 b995056..c3be9ed 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 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions 2015-08-02 15:53 ` [PATCH 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla @ 2015-08-04 0:37 ` Greg KH 1 sibling, 0 replies; 5+ messages in thread From: Greg KH @ 2015-08-04 0:37 UTC (permalink / raw) To: Chandra S Gorentla Cc: rachel.kim, dean.lee, chris.park, devel, linux-wireless, johnny.kim, linux-kernel On Sun, Aug 02, 2015 at 09:23:51PM +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)". > > Signed-off-by: Chandra S Gorentla <csgorentla@gmail.com> This series does not apply cleanly. Please rebased on the latest staging-testing branch of the staging.git tree and resend. thanks, greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-08-04 0:37 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-08-02 15:53 drivers: staging: wilc1000: Fix a few style erros Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 1/3] drivers: staging: wilc1000: use 'void' for no arguments functions Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 2/3] drivers: staging: wilc1000: move { to previous line Chandra S Gorentla 2015-08-02 15:53 ` [PATCH 3/3] drivers: staging: wilc1000: remove space after '(' Chandra S Gorentla 2015-08-04 0:37 ` [PATCH 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; as well as URLs for NNTP newsgroup(s).