target: msm8952: Disable QPNP WLED and LABIBB for HX8394F 720p panel

SDM429, SDM439, SDA429 and SDA439 platform does not need
WLED initialization as PMIC is different, so skip WLED
and LABIBB configuration.

Change-Id: Ib47635ecc14b06dabf61aaf7c140b0e3104c3e72
Signed-off-by: Raghavendra Ambadas <rambad@codeaurora.org>
diff --git a/target/msm8952/oem_panel.c b/target/msm8952/oem_panel.c
index 7c869e1..7b26285 100644
--- a/target/msm8952/oem_panel.c
+++ b/target/msm8952/oem_panel.c
@@ -585,7 +585,9 @@
 		memcpy(phy_db->timing,
 						hx8394f_720p_video_timings, TIMING_SIZE);
 		pinfo->mipi.signature = HX8394F_720P_VIDEO_SIGNATURE;
-		pinfo->disable_wled_labibb = true;
+		if ((board_platform_id() == SDM429) || (board_platform_id() == SDM439) ||
+				(board_platform_id() == SDA429) || (board_platform_id() == SDA439))
+			pinfo->disable_wled_labibb = true;
 		break;
 	case BYD_1200P_VIDEO_PANEL:
 		panelstruct->paneldata    = &byd_1200p_video_panel_data;