Adds an empty arch_real_time_clock.c for the PPC build. The Pegasos may

need the same RTC code as x86 (but using the ISA bus manager instead of
in/out).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5143 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-10-24 12:38:07 +00:00
parent d7f7d209ed
commit 60f9bd4a57
2 changed files with 21 additions and 0 deletions

View File

@ -11,6 +11,7 @@ KernelStaticLibrary libppc :
<$(SOURCE_GRIST)>arch_faults.c
<$(SOURCE_GRIST)>arch_int.c
<$(SOURCE_GRIST)>arch_mmu.cpp
<$(SOURCE_GRIST)>arch_real_time_clock.c
<$(SOURCE_GRIST)>arch_smp.c
<$(SOURCE_GRIST)>arch_thread.c
<$(SOURCE_GRIST)>arch_timer.c

View File

@ -0,0 +1,20 @@
/*
** Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <arch/real_time_clock.h>
uint32
arch_rtc_get_hw_time(void)
{
return 0;
}
void
arch_rtc_set_hw_time(uint32 seconds)
{
}