commit | 3a61cdf43e670b99404436a5854aae993ef616ed | [log] [tgz] |
---|---|---|
author | Tom Rix <trix@redhat.com> | Sun Aug 09 08:04:23 2020 -0700 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Fri Aug 21 14:47:49 2020 +1000 |
tree | 70f74889cfd2c08bf7baf1347b364545ce424b33 | |
parent | abd9875497ba47e198fb565f11d5f332eeb08ab3 [diff] |
hwrng: intel - cleanup initialization clang static analysis reports this problem intel-rng.c:333:2: warning: Assigned value is garbage or undefined void __iomem *mem = mem; ^~~~~~~~~~~~~~~~~ ~~~ Because mem is assigned before it is used, this is not a real problem. But the initialization is strange and not needed, so remove it. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>