rtctm 84 drivers/input/misc/hp_sdc_rtc.c static int hp_sdc_rtc_do_read_bbrtc (struct rtc_time *rtctm) rtctm 120 drivers/input/misc/hp_sdc_rtc.c memset(rtctm, 0, sizeof(struct rtc_time)); rtctm 121 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_year = (tseq[83] & 0x0f) + (tseq[90] & 0x0f) * 10; rtctm 122 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_mon = (tseq[69] & 0x0f) + (tseq[76] & 0x0f) * 10; rtctm 123 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_mday = (tseq[55] & 0x0f) + (tseq[62] & 0x0f) * 10; rtctm 124 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_wday = (tseq[48] & 0x0f); rtctm 125 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_hour = (tseq[34] & 0x0f) + (tseq[41] & 0x0f) * 10; rtctm 126 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_min = (tseq[20] & 0x0f) + (tseq[27] & 0x0f) * 10; rtctm 127 drivers/input/misc/hp_sdc_rtc.c rtctm->tm_sec = (tseq[6] & 0x0f) + (tseq[13] & 0x0f) * 10; rtctm 132 drivers/input/misc/hp_sdc_rtc.c static int hp_sdc_rtc_read_bbrtc (struct rtc_time *rtctm) rtctm 148 drivers/input/misc/hp_sdc_rtc.c memcpy(rtctm, &tm, sizeof(struct rtc_time));