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: Sravanthi Kollukuduru <skolluku@codeaurora.org>
This commit is contained in:
Sravanthi Kollukuduru 2016-03-02 14:53:28 +05:30 committed by David Keitel
parent 3369208e89
commit 7f3712ee81

View file

@ -68,8 +68,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;