diff options
author | Alessandro Zummo <a.zummo@towertech.it> | 2006-03-27 01:16:34 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 08:44:50 -0800 |
commit | c58411e95d7f5062dedd1a3064af4d359da1e633 (patch) | |
tree | 8816ec8e20ae8b1d622b41bc1e7e74c2bbd1f34d /include | |
parent | d23ee8fe6e2176a9d4dbfdd18edfa1b5bc3c79a5 (diff) | |
download | linux-3.10-c58411e95d7f5062dedd1a3064af4d359da1e633.tar.gz linux-3.10-c58411e95d7f5062dedd1a3064af4d359da1e633.tar.bz2 linux-3.10-c58411e95d7f5062dedd1a3064af4d359da1e633.zip |
[PATCH] RTC Subsystem: library functions
RTC and date/time related functions.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/rtc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index b739ac1f7ca..8454337c705 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h @@ -95,6 +95,11 @@ struct rtc_pll_info { #include <linux/interrupt.h> +extern int rtc_month_days(unsigned int month, unsigned int year); +extern int rtc_valid_tm(struct rtc_time *tm); +extern int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time); +extern void rtc_time_to_tm(unsigned long time, struct rtc_time *tm); + typedef struct rtc_task { void (*func)(void *private_data); void *private_data; |