msm: mdss: fix pipe priority validation

This change corrects the pipe priority validation logic, without
this change pipes with higher priority failed validation.
For ex dma3 rect 0 is higher priority than dma0 rect 1,
was failing priority test.

CRs-Fixed: 1054404, 1047814
Change-Id: I260bbe5ddcb4da1bd175cafda2fbfec4a6e0cd39
Signed-off-by: Abhijit Kulkarni <kabhijit@codeaurora.org>
This commit is contained in:
Abhijit Kulkarni 2016-08-16 15:14:57 -07:00
parent c5984ec85c
commit 0088b50c6d

View file

@ -747,10 +747,6 @@ static int __validate_pipe_priorities(struct mdss_mdp_pipe *left,
(left->priority >= right->priority))
return -EINVAL;
if ((left->multirect.num < right->multirect.num) &&
(left->priority > right->priority))
return -EINVAL;
return 0;
}