Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9a627e8 authored by Sravanthi Kollukuduru's avatar Sravanthi Kollukuduru
Browse files

msm: mdss: Swap the LP1 and LP2 flags



The LP1 and LP2 flags must be swapped to be in accordance
with the old HAL mapping used by MDP3 driver.

Change-Id: Id4b0b41d102f9aef2836901b2bea5e961ec0962b
Signed-off-by: default avatarSravanthi Kollukuduru <skolluku@codeaurora.org>
parent 2696d3b0
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -67,8 +67,13 @@

#define MAX_FBI_LIST 32

#ifndef TARGET_HW_MDSS_MDP3
#define BLANK_FLAG_LP	FB_BLANK_NORMAL
#define BLANK_FLAG_ULP	FB_BLANK_VSYNC_SUSPEND
#else
#define BLANK_FLAG_LP	FB_BLANK_VSYNC_SUSPEND
#define BLANK_FLAG_ULP	FB_BLANK_NORMAL
#endif

static struct fb_info *fbi_list[MAX_FBI_LIST];
static int fbi_list_index;