diff mbox series

[1/2] mt76: mt7915: fix unused 'mode' variable

Message ID 20210225145953.404859-1-arnd@kernel.org
State New
Headers show
Series [1/2] mt76: mt7915: fix unused 'mode' variable | expand

Commit Message

Arnd Bergmann Feb. 25, 2021, 2:59 p.m. UTC
From: Arnd Bergmann <arnd@arndb.de>


clang points out a possible corner case in the mt7915_tm_set_tx_cont()
function if called with invalid arguments:

drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:593:2: warning: variable 'mode' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
        default:
        ^~~~~~~
drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:597:13: note: uninitialized use occurs here
        rateval =  mode << 6 | rate_idx;
                   ^~~~
drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:506:37: note: initialize the variable 'mode' to silence this warning
        u8 rate_idx = td->tx_rate_idx, mode;
                                           ^

Change it to return an error instead of continuing with invalid data
here.

Fixes: 3f0caa3cbf94 ("mt76: mt7915: add support for continuous tx in testmode")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 drivers/net/wireless/mediatek/mt76/mt7915/testmode.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.29.2

Comments

Kalle Valo Feb. 25, 2021, 4 p.m. UTC | #1
Arnd Bergmann <arnd@kernel.org> writes:

> From: Arnd Bergmann <arnd@arndb.de>

>

> clang points out a possible corner case in the mt7915_tm_set_tx_cont()

> function if called with invalid arguments:

>

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:593:2: warning: variable 'mode' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]

>         default:

>         ^~~~~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:597:13: note: uninitialized use occurs here

>         rateval =  mode << 6 | rate_idx;

>                    ^~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:506:37: note: initialize the variable 'mode' to silence this warning

>         u8 rate_idx = td->tx_rate_idx, mode;

>                                            ^

>

> Change it to return an error instead of continuing with invalid data

> here.

>

> Fixes: 3f0caa3cbf94 ("mt76: mt7915: add support for continuous tx in testmode")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Felix, can I take these two to wireless-drivers? An ack would be good.

-- 
https://patchwork.kernel.org/project/linux-wireless/list/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
Nathan Chancellor Feb. 25, 2021, 5:58 p.m. UTC | #2
On Thu, Feb 25, 2021 at 03:59:14PM +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>

> 

> clang points out a possible corner case in the mt7915_tm_set_tx_cont()

> function if called with invalid arguments:

> 

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:593:2: warning: variable 'mode' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]

>         default:

>         ^~~~~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:597:13: note: uninitialized use occurs here

>         rateval =  mode << 6 | rate_idx;

>                    ^~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:506:37: note: initialize the variable 'mode' to silence this warning

>         u8 rate_idx = td->tx_rate_idx, mode;

>                                            ^

> 

> Change it to return an error instead of continuing with invalid data

> here.

> 

> Fixes: 3f0caa3cbf94 ("mt76: mt7915: add support for continuous tx in testmode")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> ---

>  drivers/net/wireless/mediatek/mt76/mt7915/testmode.c | 2 ++

>  1 file changed, 2 insertions(+)

> 

> diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c b/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c

> index 7fb2170a9561..aa629e1fb420 100644

> --- a/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c

> +++ b/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c

> @@ -543,6 +543,7 @@ mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en)

>  		tx_cont->bw = CMD_CBW_20MHZ;

>  		break;

>  	default:

> +		return -EINVAL;


Remove the break if we are adding a return?

>  		break;

>  	}

>  

> @@ -591,6 +592,7 @@ mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en)

>  		mode = MT_PHY_TYPE_HE_MU;

>  		break;

>  	default:

> +		return -EINVAL;

>  		break;

>  	}

>  

> -- 

> 2.29.2

>
Kalle Valo Feb. 26, 2021, 9:23 a.m. UTC | #3
Arnd Bergmann <arnd@kernel.org> wrote:

> From: Arnd Bergmann <arnd@arndb.de>

> 

> clang points out a possible corner case in the mt7915_tm_set_tx_cont()

> function if called with invalid arguments:

> 

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:593:2: warning: variable 'mode' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]

>         default:

>         ^~~~~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:597:13: note: uninitialized use occurs here

>         rateval =  mode << 6 | rate_idx;

>                    ^~~~

> drivers/net/wireless/mediatek/mt76/mt7915/testmode.c:506:37: note: initialize the variable 'mode' to silence this warning

>         u8 rate_idx = td->tx_rate_idx, mode;

>                                            ^

> 

> Change it to return an error instead of continuing with invalid data

> here.

> 

> Fixes: 3f0caa3cbf94 ("mt76: mt7915: add support for continuous tx in testmode")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Please remove the break and send v2.

Patch set to Changes Requested.

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20210225145953.404859-1-arnd@kernel.org/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
diff mbox series

Patch

diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c b/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c
index 7fb2170a9561..aa629e1fb420 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7915/testmode.c
@@ -543,6 +543,7 @@  mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en)
 		tx_cont->bw = CMD_CBW_20MHZ;
 		break;
 	default:
+		return -EINVAL;
 		break;
 	}
 
@@ -591,6 +592,7 @@  mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en)
 		mode = MT_PHY_TYPE_HE_MU;
 		break;
 	default:
+		return -EINVAL;
 		break;
 	}