Lines Matching refs:dt
51 static int pcf8583_get_datetime(struct i2c_client *client, struct rtc_time *dt) in pcf8583_get_datetime() argument
73 dt->tm_year = buf[4] >> 6; in pcf8583_get_datetime()
74 dt->tm_wday = buf[5] >> 5; in pcf8583_get_datetime()
79 dt->tm_sec = bcd2bin(buf[1]); in pcf8583_get_datetime()
80 dt->tm_min = bcd2bin(buf[2]); in pcf8583_get_datetime()
81 dt->tm_hour = bcd2bin(buf[3]); in pcf8583_get_datetime()
82 dt->tm_mday = bcd2bin(buf[4]); in pcf8583_get_datetime()
83 dt->tm_mon = bcd2bin(buf[5]) - 1; in pcf8583_get_datetime()
89 static int pcf8583_set_datetime(struct i2c_client *client, struct rtc_time *dt, int datetoo) in pcf8583_set_datetime() argument
97 buf[3] = bin2bcd(dt->tm_sec); in pcf8583_set_datetime()
98 buf[4] = bin2bcd(dt->tm_min); in pcf8583_set_datetime()
99 buf[5] = bin2bcd(dt->tm_hour); in pcf8583_set_datetime()
103 buf[6] = bin2bcd(dt->tm_mday) | (dt->tm_year << 6); in pcf8583_set_datetime()
104 buf[7] = bin2bcd(dt->tm_mon + 1) | (dt->tm_wday << 5); in pcf8583_set_datetime()