diff options
author | 2000-09-19 05:54:32 +0000 | |
---|---|---|
committer | 2000-09-19 05:54:32 +0000 | |
commit | e771857160aed79ca219fff8d5905f999c1d26a0 (patch) | |
tree | 6fad93df07d61ec0378c38a76daad9011c71e2f0 | |
parent | Changes to support ioctls as required for a framebuffer X server. (diff) | |
download | wireguard-openbsd-e771857160aed79ca219fff8d5905f999c1d26a0.tar.xz wireguard-openbsd-e771857160aed79ca219fff8d5905f999c1d26a0.zip |
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).
-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; |