diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 05:56:52 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 05:56:52 +0000 |
commit | 6659b047942eb96e77d77c467cb2f4834c8672b4 (patch) | |
tree | 1b2c5b5645066af4dd7c87905a9eaaa4a75e10fc /sys/arch | |
parent | e79e5c9312ce0fd5b76467f4fd10dc607a8d3321 (diff) |
Remove secondary hack that limited mapped size. Not needed with BAT mappings.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc/pci/vgafb.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/powerpc/pci/vgafb.c b/sys/arch/powerpc/pci/vgafb.c index caf87afd26a..91d7e9cfc9d 100644 --- a/sys/arch/powerpc/pci/vgafb.c +++ b/sys/arch/powerpc/pci/vgafb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb.c,v 1.3 2000/09/19 05:32:21 rahnds Exp $ */ +/* $OpenBSD: vgafb.c,v 1.4 2000/09/19 05:56:51 rahnds Exp $ */ /* $NetBSD: vga.c,v 1.3 1996/12/02 22:24:54 cgd Exp $ */ /* @@ -166,10 +166,6 @@ vgafb_common_probe(iot, memt, iobase, iosize, membase, memsize, mmiobase, mmiosi printf("vgafb_common_probe, mmio done\n"); gotmmio = 1; } - /* hack */ - if (memsize > 0x00010000) { - memsize = 0x00010000; - } printf("vgafb_common_probe, mem base %x size %x memt %x\n", membase, memsize, memt); |