aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/vof/ci.c
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2021-07-08 16:56:25 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2021-07-09 10:55:11 +1000
commit21bde1ecb6cecba1d2f0219a1b79c240bed78749 (patch)
treec24f3da40cfb0665e51c6430abd963331262bb5e /pc-bios/vof/ci.c
parent89bb5a4dfdef8316e840ab090ef04a5b7117731b (diff)
downloadqemu-21bde1ecb6cecba1d2f0219a1b79c240bed78749.zip
qemu-21bde1ecb6cecba1d2f0219a1b79c240bed78749.tar.gz
qemu-21bde1ecb6cecba1d2f0219a1b79c240bed78749.tar.bz2
spapr: Fix implementation of Open Firmware client interface
This addresses the comments from v22. The functional changes are (the VOF ones need retesting with Pegasos2): (VOF) setprop will start failing if the machine class callback did not handle it; (VOF) unit addresses are lowered in path_offset(); (SPAPR) /chosen/bootargs is initialized from kernel_cmdline if the client did not change it. Fixes: 5c991e5d4378 ("spapr: Implement Open Firmware client interface") Cc: BALATON Zoltan <balaton@eik.bme.hu> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Message-Id: <20210708065625.548396-1-aik@ozlabs.ru> Tested-by: BALATON Zoltan <balaton@eik.bme.hu> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pc-bios/vof/ci.c')
-rw-r--r--pc-bios/vof/ci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/vof/ci.c b/pc-bios/vof/ci.c
index 2b56050..fc4821b 100644
--- a/pc-bios/vof/ci.c
+++ b/pc-bios/vof/ci.c
@@ -69,7 +69,7 @@ static int call_ci(const char *service, int nargs, int nret, ...)
}
if (ci_entry((uint32_t)(&args)) < 0) {
- return PROM_ERROR;
+ return -1;
}
return (nret > 0) ? args.args[nargs] : 0;