aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-10-22 20:16:42 +0200
committerHelge Deller <deller@gmx.de>2023-10-22 20:16:42 +0200
commitaf73e559b83c88576dc2c32841506fa9ae7ffeef (patch)
treed866ac1c64c6b0a162e9b85738225c26f6ad44ce
parent4faf79cc8b08c7ef9711b1ed8b300762790fd130 (diff)
downloadseabios-hppa-af73e559b83c88576dc2c32841506fa9ae7ffeef.zip
seabios-hppa-af73e559b83c88576dc2c32841506fa9ae7ffeef.tar.gz
seabios-hppa-af73e559b83c88576dc2c32841506fa9ae7ffeef.tar.bz2
parisc: We only support a 32-bit PDC for now.
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/parisc/parisc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c
index 6ec168f..fbc6675 100644
--- a/src/parisc/parisc.c
+++ b/src/parisc/parisc.c
@@ -1365,8 +1365,8 @@ static int pdc_model(unsigned int *arg)
result[0] = machine_B160L.pdc_cpuid;
return PDC_OK;
case PDC_MODEL_CAPABILITIES:
- result[0] = current_machine->pdc_caps;
- result[0] |= PDC_MODEL_OS32; /* we do support 32-bit */
+ // result[0] = current_machine->pdc_caps;
+ result[0] = PDC_MODEL_OS32; /* we only support 32-bit PDC for now. */
if (0 && cpu_bit_width == 64) /* and maybe 64-bit */
result[0] |= PDC_MODEL_OS64; /* this means 64-bit PDC calls are supported */
else