drivers/staging/rtl8192u
From: Colin Ian King
Date: Sun Feb 12 2017 - 14:42:11 EST
Hi,
Static analysis via CoverityScan picked up an issue in
cmpk_handle_query_config_rx where the following operation on an u8 is
clearly not correct:
rx_query_cfg.cfg_action = (pmsg[4] & 0x80000000) >> 31;
The result of this operation is always zero. I suspect this should be:
x_query_cfg.cfg_action = (pmsg[4] & 0x80) >> 7;
..but without a datasheet I cannot check if this assumption is correct
or not. Anyhow, it is clearly a bug that needs attention.
Colin