Merge "mdss: Fix solid fill unpack pattern"

This commit is contained in:
Linux Build Service Account 2016-11-08 11:18:36 -08:00 committed by Gerrit - the friendly Code Review server
commit a1ca88555c

View file

@ -2324,7 +2324,7 @@ static int mdss_mdp_pipe_solidfill_setup(struct mdss_mdp_pipe *pipe)
/* support ARGB color format only */ /* support ARGB color format only */
unpack = (C3_ALPHA << 24) | (C2_R_Cr << 16) | unpack = (C3_ALPHA << 24) | (C2_R_Cr << 16) |
(C1_B_Cb << 8) | (C0_G_Y << 0); (C0_G_Y << 8) | (C1_B_Cb << 0);
if (pipe->scaler.enable) if (pipe->scaler.enable)
opmode |= (1 << 31); opmode |= (1 << 31);