Loading drivers/video/msm/mdss/mdp3_ctrl.c +2 −2 Original line number Diff line number Diff line Loading @@ -408,7 +408,7 @@ static int mdp3_ctrl_async_blit_req(struct msm_fb_data_type *mfd, return -EFAULT; p_req = p + sizeof(req_list_header); count = req_list_header.count; if (count < 0 || count >= MAX_BLIT_REQ) if (count < 0 || count > MAX_BLIT_REQ) return -EINVAL; rc = mdp3_ppp_parse_req(p_req, &req_list_header, 1); if (!rc) Loading @@ -427,7 +427,7 @@ static int mdp3_ctrl_blit_req(struct msm_fb_data_type *mfd, void __user *p) return -EFAULT; p_req = p + sizeof(struct mdp_blit_req_list); count = req_list_header.count; if (count < 0 || count >= MAX_BLIT_REQ) if (count < 0 || count > MAX_BLIT_REQ) return -EINVAL; req_list_header.sync.acq_fen_fd_cnt = 0; rc = mdp3_ppp_parse_req(p_req, &req_list_header, 0); Loading Loading
drivers/video/msm/mdss/mdp3_ctrl.c +2 −2 Original line number Diff line number Diff line Loading @@ -408,7 +408,7 @@ static int mdp3_ctrl_async_blit_req(struct msm_fb_data_type *mfd, return -EFAULT; p_req = p + sizeof(req_list_header); count = req_list_header.count; if (count < 0 || count >= MAX_BLIT_REQ) if (count < 0 || count > MAX_BLIT_REQ) return -EINVAL; rc = mdp3_ppp_parse_req(p_req, &req_list_header, 1); if (!rc) Loading @@ -427,7 +427,7 @@ static int mdp3_ctrl_blit_req(struct msm_fb_data_type *mfd, void __user *p) return -EFAULT; p_req = p + sizeof(struct mdp_blit_req_list); count = req_list_header.count; if (count < 0 || count >= MAX_BLIT_REQ) if (count < 0 || count > MAX_BLIT_REQ) return -EINVAL; req_list_header.sync.acq_fen_fd_cnt = 0; rc = mdp3_ppp_parse_req(p_req, &req_list_header, 0); Loading