From: deraadt Date: Thu, 14 Dec 1995 06:05:20 +0000 (+0000) Subject: from netbsd: include /dev/io as one of the `kmem' devices X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=89be434cc64589547cfacaa5f7831d477b25de44;p=openbsd from netbsd: include /dev/io as one of the `kmem' devices --- 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)); } /*