btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / system / kernel / arch / arm / arch_real_time_clock.cpp
blob584bec9ffb916117fe7d7a0d0a965db2dff84ba2
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.
7 * Distributed under the terms of the MIT License.
8 */
11 #include <arch/real_time_clock.h>
13 #include <real_time_clock.h>
14 #include <real_time_data.h>
15 #include <smp.h>
18 status_t
19 arch_rtc_init(kernel_args *args, struct real_time_data *data)
21 return B_OK;
25 uint32
26 arch_rtc_get_hw_time(void)
31 void
32 arch_rtc_set_hw_time(uint32 seconds)
37 void
38 arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset)
43 bigtime_t
44 arch_rtc_get_system_time_offset(struct real_time_data *data)
46 return 0;