staging: wfx: fix use of uninitialized pointer
authorJérôme Pouiller <jerome.pouiller@silabs.com>
Mon, 19 Oct 2020 16:06:03 +0000 (18:06 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Oct 2020 12:23:42 +0000 (13:23 +0100)
commitd3a85737521a8570adf3a8171b4b3e42216686ec
tree46dae728de723ddb5c9be523b14a82b65794af2f
parentb6ae84d648954fae096d94faea1ddb6518b27841
staging: wfx: fix use of uninitialized pointer

With -Wuninitialized, the compiler complains:

drivers/staging/wfx/data_tx.c:34:19: warning: variable 'band' is uninitialized when used here [-Wuninitialized]
    if (rate->idx >= band->n_bitrates) {
                         ^~~~

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Nathan Chancellor <natechancellor@gmail.com>
Fixes: 868fd970e187 ("staging: wfx: improve robustness of wfx_get_hw_rate()")
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
Link: https://lore.kernel.org/r/20201019160604.1609180-1-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/data_tx.c