artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1a9cd8
)
from netbsd: include /dev/io as one of the `kmem' devices
author
deraadt
<deraadt@openbsd.org>
Thu, 14 Dec 1995 06:05:20 +0000
(06:05 +0000)
committer
deraadt
<deraadt@openbsd.org>
Thu, 14 Dec 1995 06:05:20 +0000
(06:05 +0000)
sys/arch/i386/i386/conf.c
patch
|
blob
|
history
diff --git
a/sys/arch/i386/i386/conf.c
b/sys/arch/i386/i386/conf.c
index
6fb6fd5
..
1f97e59
100644
(file)
--- a/
sys/arch/i386/i386/conf.c
+++ b/
sys/arch/i386/i386/conf.c
@@
-1,4
+1,4
@@
-/* $NetBSD: conf.c,v 1.6
7 1995/08/17 17:40:50 thorpej
Exp $ */
+/* $NetBSD: conf.c,v 1.6
8 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)
);
}
/*