summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1997-09-10 00:17:39 +0000
committerdg <dg@FreeBSD.org>1997-09-10 00:17:39 +0000
commit50b6c84d88c2b499e5842f07cdc66e7c4833460e (patch)
tree3c99ed9e650bfd826aee60082aeb26604c22b2d8 /sys/dev/ed
parent2acb5315cbb44024fca5333a10841aa169db0554 (diff)
downloadFreeBSD-src-50b6c84d88c2b499e5842f07cdc66e7c4833460e.zip
FreeBSD-src-50b6c84d88c2b499e5842f07cdc66e7c4833460e.tar.gz
Change the address for the low end of what we permit from c0000 down
to a0000 so that people can put their cards in the middle of their video memory if they want. :-)
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 3649ba8..dfa5fed 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_ed.c,v 1.119 1997/09/08 10:27:09 davidg Exp $
+ * $Id: if_ed.c,v 1.120 1997/09/08 20:00:21 davidg Exp $
*/
/*
@@ -630,7 +630,7 @@ ed_probe_WD80x3(isa_dev)
memsize = isa_dev->id_msize;
maddr = (u_int) isa_dev->id_maddr & 0xffffff;
- if (maddr < 0xc0000 || maddr + memsize > 0x1000000) {
+ if (maddr < 0xa0000 || maddr + memsize > 0x1000000) {
printf("ed%d: Invalid ISA memory address range configured: 0x%x - 0x%x\n",
isa_dev->id_unit, maddr, maddr + memsize);
return 0;
OpenPOWER on IntegriCloud