diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-04 18:51:03 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-04 18:51:03 +0000 |
commit | 0ca4b2d0a1594d4e74917b4ea735a85fc001538b (patch) | |
tree | 6f0bba6331b06891e4632bd500703b1d7f838521 /sys/arch/i386 | |
parent | 1ffccee3c14fedfdff050ca4d264bb4063a65ad9 (diff) |
remove #ifndef LKM, since that stuff already in sys/conf.h,
add lkmenodev prototype.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index 9b68b21902b..c28ad9cc561 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.13 1996/04/29 14:12:41 hvozda Exp $ */ +/* $OpenBSD: conf.c,v 1.14 1996/05/04 18:50:44 mickey Exp $ */ /* $NetBSD: conf.c,v 1.74 1996/03/30 07:30:33 mycroft Exp $ */ /* @@ -40,12 +40,6 @@ int ttselect __P((dev_t, int, struct proc *)); -#ifndef LKM -#define lkmenodev enodev -#else -int lkmenodev(); -#endif - #include "wdc.h" bdev_decl(wd); bdev_decl(sw); @@ -172,11 +166,6 @@ cdev_decl(bpf); cdev_decl(pcmcia); #include "spkr.h" cdev_decl(spkr); -#ifdef LKM -#define NLKM 1 -#else -#define NLKM 0 -#endif cdev_decl(lkm); #include "mms.h" cdev_decl(mms); |