bd476c1306
Clang warns:
drivers/misc/cardreader/rts5261.c:406:13: error: variable 'setting_reg2' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
} else if (efuse_valid == 0) {
^~~~~~~~~~~~~~~~
drivers/misc/cardreader/rts5261.c:412:30: note: uninitialized use occurs here
pci_read_config_dword(pdev, setting_reg2, &lval2);
^~~~~~~~~~~~
efuse_valid == 1 is not a valid value so just return early from the
function to avoid using setting_reg2 uninitialized.
Fixes:
|
||
---|---|---|
.. | ||
alcor_pci.c | ||
Kconfig | ||
Makefile | ||
rtl8411.c | ||
rts5209.c | ||
rts5227.c | ||
rts5228.c | ||
rts5228.h | ||
rts5229.c | ||
rts5249.c | ||
rts5260.c | ||
rts5260.h | ||
rts5261.c | ||
rts5261.h | ||
rtsx_pcr.c | ||
rtsx_pcr.h | ||
rtsx_usb.c |