mirror of
https://github.com/qemu/qemu.git
synced 2024-12-13 14:33:31 +08:00
hw/intc/arm_gicv3_its: Fix handling of process_its_cmd() return value
process_its_cmd() returns a bool, like all the other process_ functions. However we were putting its return value into 'res', not 'result', which meant we would ignore it when deciding whether to continue or stall the command queue. Fix the typo. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20220111171048.3545974-4-peter.maydell@linaro.org
This commit is contained in:
parent
905720f18d
commit
7d62b2dcdb
@ -678,10 +678,10 @@ static void process_cmdq(GICv3ITSState *s)
|
||||
|
||||
switch (cmd) {
|
||||
case GITS_CMD_INT:
|
||||
res = process_its_cmd(s, data, cq_offset, INTERRUPT);
|
||||
result = process_its_cmd(s, data, cq_offset, INTERRUPT);
|
||||
break;
|
||||
case GITS_CMD_CLEAR:
|
||||
res = process_its_cmd(s, data, cq_offset, CLEAR);
|
||||
result = process_its_cmd(s, data, cq_offset, CLEAR);
|
||||
break;
|
||||
case GITS_CMD_SYNC:
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user