Lines Matching refs:pid_msg
680 struct sms_msg_data pid_msg; in smsdvb_start_feed() local
687 pid_msg.x_msg_header.msg_src_id = DVBT_BDA_CONTROL_MSG_ID; in smsdvb_start_feed()
688 pid_msg.x_msg_header.msg_dst_id = HIF_TASK; in smsdvb_start_feed()
689 pid_msg.x_msg_header.msg_flags = 0; in smsdvb_start_feed()
690 pid_msg.x_msg_header.msg_type = MSG_SMS_ADD_PID_FILTER_REQ; in smsdvb_start_feed()
691 pid_msg.x_msg_header.msg_length = sizeof(pid_msg); in smsdvb_start_feed()
692 pid_msg.msg_data[0] = feed->pid; in smsdvb_start_feed()
695 &pid_msg, sizeof(pid_msg)); in smsdvb_start_feed()
702 struct sms_msg_data pid_msg; in smsdvb_stop_feed() local
709 pid_msg.x_msg_header.msg_src_id = DVBT_BDA_CONTROL_MSG_ID; in smsdvb_stop_feed()
710 pid_msg.x_msg_header.msg_dst_id = HIF_TASK; in smsdvb_stop_feed()
711 pid_msg.x_msg_header.msg_flags = 0; in smsdvb_stop_feed()
712 pid_msg.x_msg_header.msg_type = MSG_SMS_REMOVE_PID_FILTER_REQ; in smsdvb_stop_feed()
713 pid_msg.x_msg_header.msg_length = sizeof(pid_msg); in smsdvb_stop_feed()
714 pid_msg.msg_data[0] = feed->pid; in smsdvb_stop_feed()
717 &pid_msg, sizeof(pid_msg)); in smsdvb_stop_feed()