Lines Matching defs:msg
44 struct imx_sc_msg_timer_get_rtc_time msg;
45 struct imx_sc_rpc_msg *hdr = &msg.hdr;
53 ret = imx_scu_call_rpc(rtc_ipc_handle, &msg, true);
59 rtc_time64_to_tm(msg.time, tm);
95 struct imx_sc_msg_timer_rtc_set_alarm msg;
96 struct imx_sc_rpc_msg *hdr = &msg.hdr;
105 msg.year = alrm_tm->tm_year + 1900;
106 msg.mon = alrm_tm->tm_mon + 1;
107 msg.day = alrm_tm->tm_mday;
108 msg.hour = alrm_tm->tm_hour;
109 msg.min = alrm_tm->tm_min;
110 msg.sec = alrm_tm->tm_sec;
112 ret = imx_scu_call_rpc(rtc_ipc_handle, &msg, true);