039c8db774
On the BeagleBoard-xM, the RTC is located on the Power Management IC (PMIC). To keep things consistent, access to the PMIC's RTC is done through the readclock driver. The readclock driver forwards the request on to the TPS65950 driver which does the work of manipulating the registers on the chip. Change-Id: I53cefbb59c5a9ab87fab90df3cc1a75a6e430f58
11 lines
249 B
C
11 lines
249 B
C
#ifndef __FORWARD_H
|
|
#define __FORWARD_H
|
|
|
|
int fwd_set_label(char *label);
|
|
int fwd_init(void);
|
|
int fwd_get_time(struct tm *t, int flags);
|
|
int fwd_set_time(struct tm *t, int flags);
|
|
int fwd_pwr_off(void);
|
|
void fwd_exit(void);
|
|
|
|
#endif /* __FORWARD_H */
|