diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-06-19 15:13:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-06-19 15:13:36 +0000 |
commit | d31edacd1ead7b005d2e2c9368e30e991400abad (patch) | |
tree | 80957e140904f83268e47745eaca80278c651493 /sys/arch/i386 | |
parent | b6696d46af8c8d0ef269fc5504a30c938c5a8694 (diff) |
move clock_subr.c to a better place, and now it is always in the kernel
so that things can use it; tested on all architectures; ok kettenis
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/conf/files.i386 | 3 | ||||
-rw-r--r-- | sys/arch/i386/isa/clock.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/i386/conf/files.i386 b/sys/arch/i386/conf/files.i386 index 31043e1aaf3..864003179a8 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.148 2006/06/13 03:01:59 gwk Exp $ +# $OpenBSD: files.i386,v 1.149 2006/06/19 15:13:34 deraadt Exp $ # # new style config file for i386 architecture # @@ -161,7 +161,6 @@ file arch/i386/isa/isa_machdep.c isabus # PC clock file arch/i386/isa/clock.c isabus -file dev/clock_subr.c isabus # Numeric Processing Extension; Math Co-processor device npx diff --git a/sys/arch/i386/isa/clock.c b/sys/arch/i386/isa/clock.c index 24cd986b182..d18f216c533 100644 --- a/sys/arch/i386/isa/clock.c +++ b/sys/arch/i386/isa/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.35 2006/05/09 09:40:50 otto Exp $ */ +/* $OpenBSD: clock.c,v 1.36 2006/06/19 15:13:35 deraadt Exp $ */ /* $NetBSD: clock.c,v 1.39 1996/05/12 23:11:54 mycroft Exp $ */ /*- @@ -98,7 +98,6 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <machine/pio.h> #include <machine/cpufunc.h> -#include <dev/clock_subr.h> #include <dev/isa/isareg.h> #include <dev/isa/isavar.h> #include <dev/ic/mc146818reg.h> |