diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-20 20:43:49 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-20 20:43:49 +0000 |
commit | fb4665ff0d4ae84bc3ca2f5f997275feb5d1b223 (patch) | |
tree | 3682e6697071153f6f6955358194a2ecf79bb309 /sys | |
parent | f7e578b681f2047c43e6d75930fb5f278543dc32 (diff) |
ifdef the RB_TIMEBAD change,
resettodr doesn't currently do anything anyway, put this problem
off till later.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/powerpc/machdep.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/machdep.c b/sys/arch/powerpc/powerpc/machdep.c index d0024a52236..55d9d9f9306 100644 --- a/sys/arch/powerpc/powerpc/machdep.c +++ b/sys/arch/powerpc/powerpc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.3 1997/01/16 20:43:44 kstailey Exp $ */ +/* $OpenBSD: machdep.c,v 1.4 1997/01/20 20:43:48 rahnds Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -865,6 +865,10 @@ boot(howto) if (!cold && !(howto & RB_NOSYNC) && !syncing) { syncing = 1; vfs_shutdown(); /* sync */ +#if 0 + /* resettodr does not currently do anything, address + * this later + */ /* * If we've been adjusting the clock, the todr * will be out of synch; adjust it now unless @@ -875,6 +879,7 @@ boot(howto) } else { printf("WARNING: not updating battery clock\n"); } +#endif } splhigh(); if (howto & RB_HALT) { |