diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-11-08 11:18:36 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-11-08 11:18:35 -0800 |
| commit | a1ca88555c2baa89f1d52bf797aaa8bf4f1de3e3 (patch) | |
| tree | 85820ee4c6ac40e0810f33f32350f30ba642e017 /drivers/video/fbdev | |
| parent | 2fd83abdb72b6758588ad76fbbb6097c59b76c3a (diff) | |
| parent | ffe67c4cf892ff7520714ff695c039d7a1368ca0 (diff) | |
Merge "mdss: Fix solid fill unpack pattern"
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_mdp_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdss_mdp_pipe.c b/drivers/video/fbdev/msm/mdss_mdp_pipe.c index 8f211a977aa4..1b04e783ac18 100644 --- a/drivers/video/fbdev/msm/mdss_mdp_pipe.c +++ b/drivers/video/fbdev/msm/mdss_mdp_pipe.c @@ -2324,7 +2324,7 @@ static int mdss_mdp_pipe_solidfill_setup(struct mdss_mdp_pipe *pipe) /* support ARGB color format only */ 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) opmode |= (1 << 31); |
