xref: /haiku/src/system/kernel/arch/sparc/arch_real_time_clock.cpp (revision a127b88ecbfab58f64944c98aa47722a18e363b2)
1 #include <arch/real_time_clock.h>
2 
3 #include <real_time_clock.h>
4 #include <real_time_data.h>
5 
6 
7 status_t
8 arch_rtc_init(kernel_args *args, struct real_time_data *data)
9 {
10 	return B_OK;
11 }
12 
13 
14 uint32
15 arch_rtc_get_hw_time(void)
16 {
17 	return 0;
18 }
19 
20 
21 void
22 arch_rtc_set_hw_time(uint32 seconds)
23 {
24 }
25 
26 
27 void
28 arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset)
29 {
30 }
31 
32 
33 bigtime_t
34 arch_rtc_get_system_time_offset(struct real_time_data *data)
35 {
36 	return 0;
37 }
38