mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
7a2148dfda
The current code decrements the timeout counter i and the end of
each loop i is incremented, so the check for timeout will always
be false and hence the timeout mechanism is just a dead code path.
Potentially, if the RD_READY bit is not set, we could end up in
an infinite loop.
Fix this so the timeout starts from 1000 and decrements to zero,
if at the end of the loop i is zero we have a timeout condition.
Detected by CoverityScan, CID#1324008 ("Logically dead code")
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
smiapp-core.c | ||
smiapp-limits.c | ||
smiapp-limits.h | ||
smiapp-quirk.c | ||
smiapp-quirk.h | ||
smiapp-reg-defs.h | ||
smiapp-reg.h | ||
smiapp-regs.c | ||
smiapp-regs.h | ||
smiapp.h |