diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-01-23 16:53:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-01-23 16:53:22 +0000 |
commit | c9029b1288d19d03daaa0122f369a66ca5a3ea50 (patch) | |
tree | 537e9b4c278534644bfccda71dbacec1c905f845 /sys/arch/hppa | |
parent | e1b475c44e3ea78de9c4936b6ca33526af430278 (diff) |
Two sti(4) changes necessary for hp300:
- specify which microcode bank (pa or m68k) to use at attachment time.
- compensate for broken 8.02 m68k code which reports wrong frame buffer
offset.
ok mickey@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/dev/sti_sgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/dev/sti_sgc.c b/sys/arch/hppa/dev/sti_sgc.c index 99e955e6d29..171731f129e 100644 --- a/sys/arch/hppa/dev/sti_sgc.c +++ b/sys/arch/hppa/dev/sti_sgc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sti_sgc.c,v 1.24 2004/09/15 20:11:28 mickey Exp $ */ +/* $OpenBSD: sti_sgc.c,v 1.25 2005/01/23 16:53:19 miod Exp $ */ /* * Copyright (c) 2000-2003 Michael Shalayeff @@ -230,5 +230,5 @@ sti_sgc_attach(parent, self, aux) if (ca->ca_hpa == (hppa_hpa_t)PAGE0->mem_cons.pz_hpa) sc->sc_flags |= STI_CONSOLE; - sti_attach_common(sc); + sti_attach_common(sc, STI_CODEBASE_PA); } |