Searched refs:rtc_bfin (Results 1 – 1 of 1) sorted by relevance
97 static inline unsigned long rtc_bfin_to_time(u32 rtc_bfin) in rtc_bfin_to_time() argument99 return (((rtc_bfin >> SEC_BITS_OFF) & 0x003F)) + in rtc_bfin_to_time()100 (((rtc_bfin >> MIN_BITS_OFF) & 0x003F) * 60) + in rtc_bfin_to_time()101 (((rtc_bfin >> HOUR_BITS_OFF) & 0x001F) * 60 * 60) + in rtc_bfin_to_time()102 (((rtc_bfin >> DAY_BITS_OFF) & 0x7FFF) * 60 * 60 * 24); in rtc_bfin_to_time()104 static inline void rtc_bfin_to_tm(u32 rtc_bfin, struct rtc_time *tm) in rtc_bfin_to_tm() argument106 rtc_time_to_tm(rtc_bfin_to_time(rtc_bfin), tm); in rtc_bfin_to_tm()