diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-12-22 09:49:40 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-12-22 09:49:40 +0000 |
commit | 9f900604dbc423473ab9e941ac8feb88f9753e73 (patch) | |
tree | c69f40734154e65f3b7f6e5dc946df7e36af7855 /sys/arch/mvme88k/dev/clock.c | |
parent | e1fa840727a68278f53aa349cd5ca12b79da6b24 (diff) |
masive cmmu overhaul. function pointers now control cmmu functionality
instead of case statements based on cpu type.
Diffstat (limited to 'sys/arch/mvme88k/dev/clock.c')
-rw-r--r-- | sys/arch/mvme88k/dev/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/dev/clock.c b/sys/arch/mvme88k/dev/clock.c index 15ff3fc734c..ebee2a4c254 100644 --- a/sys/arch/mvme88k/dev/clock.c +++ b/sys/arch/mvme88k/dev/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.16 2001/12/20 06:07:28 smurph Exp $ */ +/* $OpenBSD: clock.c,v 1.17 2001/12/22 09:49:39 smurph Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1995 Theo de Raadt @@ -96,7 +96,7 @@ #include <machine/autoconf.h> #include <machine/bugio.h> #include <machine/cpu.h> -#include <machine/mmu.h> /* DMA_CACHE_SYNC, etc... */ +#include <machine/cmmu.h> /* DMA_CACHE_SYNC, etc... */ #include "pcctwo.h" #if NPCCTWO > 0 #include <mvme88k/dev/pcctwofunc.h> |