diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 05:54:33 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 05:54:33 +0000 |
commit | e79e5c9312ce0fd5b76467f4fd10dc607a8d3321 (patch) | |
tree | c7026cf92f2ae67f7e138bd2b5ef19e7944e0f4e /sys/arch/powerpc | |
parent | b0532c069f15b76550cad4a67822e422adc921ec (diff) |
Remove hack code that "limited" the mapped memory to 64k. Now that
the BAT is used to map the 16M display memory, no size limit is needed.
(Was only originally needed because of pmap limitations).
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/ofw_machdep.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/powerpc/powerpc/ofw_machdep.c b/sys/arch/powerpc/powerpc/ofw_machdep.c index 4bb0d2ef483..02fefeaf5c4 100644 --- a/sys/arch/powerpc/powerpc/ofw_machdep.c +++ b/sys/arch/powerpc/powerpc/ofw_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofw_machdep.c,v 1.17 2000/09/19 05:28:11 rahnds Exp $ */ +/* $OpenBSD: ofw_machdep.c,v 1.18 2000/09/19 05:54:32 rahnds Exp $ */ /* $NetBSD: ofw_machdep.c,v 1.1 1996/09/30 16:34:50 ws Exp $ */ /* @@ -451,11 +451,6 @@ ofwconprobe() printf(": cons_width %d cons_linebytes %d cons_height %d\n", cons_width, cons_linebytes, cons_height); - if (addr[0].size_lo > 0x100000) { - addr[0].size_lo = 0x100000; - } - - { int i,j; |