Added arch_rtc_init() function.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11075 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-01-26 18:29:41 +00:00
parent f1a2f39517
commit 72c01a1b3b
2 changed files with 30 additions and 8 deletions

View File

@ -1,10 +1,19 @@
/*
** Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
/*
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de
* Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
*
* Distributed under the terms of the MIT License.
*/
#include <arch/real_time_clock.h>
#include <real_time_data.h>
status_t
arch_rtc_init(kernel_args *args, struct real_time_data *data)
{
}
uint32

View File

@ -1,7 +1,9 @@
/*
** Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
/*
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de
* Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
*
* Distributed under the terms of the MIT License.
*/
#include <arch/real_time_clock.h>
@ -258,6 +260,17 @@ secs_to_cmos(uint32 seconds, cmos_time *cmos)
}
// #pragma mark -
status_t
arch_rtc_init(struct kernel_args *args, struct real_time_data *data)
{
data->system_time_conversion_factor = args->arch_args.system_time_cv_factor;
return B_OK;
}
uint32
arch_rtc_get_hw_time(void)
{