* [PATCH v3 14/15] net: wireless: ath: Remove unneeded variable ret returning 0
@ 2015-10-22 18:26 Punit Vara
2015-10-22 18:35 ` Sergei Shtylyov
0 siblings, 1 reply; 3+ messages in thread
From: Punit Vara @ 2015-10-22 18:26 UTC (permalink / raw)
To: jirislaby
Cc: mickflemm, mcgrof, kvalo, linux-wireless, netdev, linux-kernel,
sergei.shtylyov, Punit Vara
This patch is to the ath5k/eeprom.c that fixes up warning caught by
coccicheck:
-Unneeded variable: "ret". Return "0" on line 1733
Remove unneccesary variable ret created to return zero.
Also removed empty line suggested by Sergei
Signed-off-by: Punit Vara <punitvara@gmail.com>
---
drivers/net/wireless/ath/ath5k/eeprom.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c b/drivers/net/wireless/ath/ath5k/eeprom.c
index 94d34ee..0c82ea5 100644
--- a/drivers/net/wireless/ath/ath5k/eeprom.c
+++ b/drivers/net/wireless/ath/ath5k/eeprom.c
@@ -1707,8 +1707,7 @@ ath5k_eeprom_read_spur_chans(struct ath5k_hw *ah)
struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
u32 offset;
u16 val;
- int ret = 0, i;
-
+ int i;
offset = AR5K_EEPROM_CTL(ee->ee_version) +
AR5K_EEPROM_N_CTLS(ee->ee_version);
@@ -1730,7 +1729,7 @@ ath5k_eeprom_read_spur_chans(struct ath5k_hw *ah)
}
}
- return ret;
+ return 0;
}
--
2.5.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3 14/15] net: wireless: ath: Remove unneeded variable ret returning 0
2015-10-22 18:26 [PATCH v3 14/15] net: wireless: ath: Remove unneeded variable ret returning 0 Punit Vara
@ 2015-10-22 18:35 ` Sergei Shtylyov
2015-10-22 18:53 ` punit vara
0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2015-10-22 18:35 UTC (permalink / raw)
To: Punit Vara, jirislaby
Cc: mickflemm, mcgrof, kvalo, linux-wireless, netdev, linux-kernel
Hello.
On 10/22/2015 09:26 PM, Punit Vara wrote:
> This patch is to the ath5k/eeprom.c that fixes up warning caught by
> coccicheck:
>
> -Unneeded variable: "ret". Return "0" on line 1733
>
> Remove unneccesary variable ret created to return zero.
>
> Also removed empty line suggested by Sergei
>
> Signed-off-by: Punit Vara <punitvara@gmail.com>
> ---
> drivers/net/wireless/ath/ath5k/eeprom.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c b/drivers/net/wireless/ath/ath5k/eeprom.c
> index 94d34ee..0c82ea5 100644
> --- a/drivers/net/wireless/ath/ath5k/eeprom.c
> +++ b/drivers/net/wireless/ath/ath5k/eeprom.c
> @@ -1707,8 +1707,7 @@ ath5k_eeprom_read_spur_chans(struct ath5k_hw *ah)
> struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
> u32 offset;
> u16 val;
> - int ret = 0, i;
> -
No, this one shouldn't have been removed. There should an empty line
between the declarations and the statements.
> + int i;
> offset = AR5K_EEPROM_CTL(ee->ee_version) +
> AR5K_EEPROM_N_CTLS(ee->ee_version);
>
MBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v3 14/15] net: wireless: ath: Remove unneeded variable ret returning 0
2015-10-22 18:35 ` Sergei Shtylyov
@ 2015-10-22 18:53 ` punit vara
0 siblings, 0 replies; 3+ messages in thread
From: punit vara @ 2015-10-22 18:53 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: jirislaby, Nick Kossifidis, mcgrof, kvalo, linux-wireless, netdev,
linux-kernel
On Fri, Oct 23, 2015 at 12:05 AM, Sergei Shtylyov
<sergei.shtylyov@cogentembedded.com> wrote:
> Hello.
>
> On 10/22/2015 09:26 PM, Punit Vara wrote:
>
>> This patch is to the ath5k/eeprom.c that fixes up warning caught by
>> coccicheck:
>>
>> -Unneeded variable: "ret". Return "0" on line 1733
>>
>> Remove unneccesary variable ret created to return zero.
>>
>> Also removed empty line suggested by Sergei
>>
>> Signed-off-by: Punit Vara <punitvara@gmail.com>
>> ---
>> drivers/net/wireless/ath/ath5k/eeprom.c | 5 ++---
>> 1 file changed, 2 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c
>> b/drivers/net/wireless/ath/ath5k/eeprom.c
>> index 94d34ee..0c82ea5 100644
>> --- a/drivers/net/wireless/ath/ath5k/eeprom.c
>> +++ b/drivers/net/wireless/ath/ath5k/eeprom.c
>> @@ -1707,8 +1707,7 @@ ath5k_eeprom_read_spur_chans(struct ath5k_hw *ah)
>> struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
>> u32 offset;
>> u16 val;
>> - int ret = 0, i;
>> -
>
>
> No, this one shouldn't have been removed. There should an empty line
> between the declarations and the statements.
>
>> + int i;
>> offset = AR5K_EEPROM_CTL(ee->ee_version) +
>> AR5K_EEPROM_N_CTLS(ee->ee_version);
>>
>
> MBR, Sergei
>
I have resent patch with update but I cant see it in my mailbox I dont
know Why.. Sorry if You are getting mail more time. I am sending final
version v5 as last.Please sorry for inconvenience
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-22 18:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-22 18:26 [PATCH v3 14/15] net: wireless: ath: Remove unneeded variable ret returning 0 Punit Vara
2015-10-22 18:35 ` Sergei Shtylyov
2015-10-22 18:53 ` punit vara
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).