Searched refs:chrp_cmos_clock_write (Results 1 – 1 of 1) sorted by relevance
/linux-6.1.9/arch/powerpc/platforms/chrp/ |
D | time.c | 74 static void chrp_cmos_clock_write(unsigned long val, int addr) in chrp_cmos_clock_write() function 95 chrp_cmos_clock_write((save_control|RTC_SET), RTC_CONTROL); in chrp_set_rtc_time() 99 chrp_cmos_clock_write((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); in chrp_set_rtc_time() 109 chrp_cmos_clock_write(tm.tm_sec,RTC_SECONDS); in chrp_set_rtc_time() 110 chrp_cmos_clock_write(tm.tm_min,RTC_MINUTES); in chrp_set_rtc_time() 111 chrp_cmos_clock_write(tm.tm_hour,RTC_HOURS); in chrp_set_rtc_time() 112 chrp_cmos_clock_write(tm.tm_mon,RTC_MONTH); in chrp_set_rtc_time() 113 chrp_cmos_clock_write(tm.tm_mday,RTC_DAY_OF_MONTH); in chrp_set_rtc_time() 114 chrp_cmos_clock_write(tm.tm_year,RTC_YEAR); in chrp_set_rtc_time() 123 chrp_cmos_clock_write(save_control, RTC_CONTROL); in chrp_set_rtc_time() [all …]
|