diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-28 23:50:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-28 23:50:20 +0000 |
commit | 72f4f57ba7a1995800771745b3ea06271cd0b8f5 (patch) | |
tree | 696a8a6096628fba20fa6a1673abe0cff44b81ac /sys/arch/mvmeppc/include/cpu.h | |
parent | 8c40da6ce09705ba6c14afaae59329b7701bc8f4 (diff) |
More clock handling cleanup:
- move clock callbacks outside the firmware structure
- map the clock virtual. A bit tricky because it needs to be mapped before
autoconf...
- compensate for the removal of 1:1 segment 8 mapping
Diffstat (limited to 'sys/arch/mvmeppc/include/cpu.h')
-rw-r--r-- | sys/arch/mvmeppc/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mvmeppc/include/cpu.h b/sys/arch/mvmeppc/include/cpu.h index 81320fba161..c2c4cfe5bbd 100644 --- a/sys/arch/mvmeppc/include/cpu.h +++ b/sys/arch/mvmeppc/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.6 2004/01/25 21:41:28 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.7 2004/01/28 23:50:18 miod Exp $ */ /* $NetBSD: cpu.h,v 1.1 1996/09/30 16:34:21 ws Exp $ */ /* @@ -37,5 +37,6 @@ #include <powerpc/cpu.h> void install_extint(void (*)(void)); +void nvram_map(void); #endif /* _MACHINE_CPU_H_ */ |