[GPU] Fix bit check in Make Coherent logging.
This commit is contained in:
parent
d703b5b880
commit
142148e594
|
@ -360,7 +360,7 @@ void CommandProcessor::MakeCoherent() {
|
|||
}
|
||||
|
||||
const char* action = "N/A";
|
||||
if (status_host & 0x03000000) {
|
||||
if ((status_host & 0x03000000) == 0x03000000) {
|
||||
action = "VC | TC";
|
||||
} else if (status_host & 0x02000000) {
|
||||
action = "TC";
|
||||
|
|
Loading…
Reference in New Issue