summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 06:05:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 06:05:21 +0000
commitcab1c4b9726187e2d23040164af12131cb024179 (patch)
tree1dc6ee2fe77ad37c75689c60ffb55b8fad2bbfbe /sys
parent1db4a86ff60f68e8f1bd84ca84d7e2536d0b333e (diff)
from netbsd: include /dev/io as one of the `kmem' devices
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/i386/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index 6fb6fd5cb78..1f97e5960b6 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: conf.c,v 1.67 1995/08/17 17:40:50 thorpej Exp $ */
+/* $NetBSD: conf.c,v 1.68 1995/12/09 05:53:00 mycroft Exp $ */
/*
* Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved.
@@ -246,7 +246,7 @@ iskmemdev(dev)
dev_t dev;
{
- return (major(dev) == mem_no && minor(dev) < 2);
+ return (major(dev) == mem_no && (minor(dev) < 2 || minor(dev) == 14));
}
/*