aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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