1/*
2 * Copyright 2007, Fran��ois Revol, revol@free.fr.
3 * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>. All rights reserved.
4 * Copyright 2005-2007, Axel D��rfler, axeld@pinc-software.de
5 * Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
6 *
7 * Distributed under the terms of the MIT License.
8 */
9
10
11#include <arch/real_time_clock.h>
12
13#include <real_time_clock.h>
14#include <real_time_data.h>
15#include <smp.h>
16
17
18status_t
19arch_rtc_init(kernel_args *args, struct real_time_data *data)
20{
21	return B_OK;
22}
23
24
25uint32
26arch_rtc_get_hw_time(void)
27{
28}
29
30
31void
32arch_rtc_set_hw_time(uint32 seconds)
33{
34}
35
36
37void
38arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset)
39{
40}
41
42
43bigtime_t
44arch_rtc_get_system_time_offset(struct real_time_data *data)
45{
46	return 0;
47}
48