blob: 402f1297532d71793a6d835e5551e28ea4b5a199 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
hw/dma/pl080.c:354: possible typo ?
hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected: s->conf & (0x2 | 0x2). Consider verifying it.
Source code is
if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {
Maybe better code
if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) {
|