msm: board-8064-display: adding two extra gpio default values to dsi2lvds_gpio

Device is crashing while accessing out of bound addresses.
mipi_tc358764 driver assumes there are four entries in array dsi2lvds_gpio[]
along with two extra gpios for '3d module of liquid WUXGA display'
but these gpios are not added to board file.
Increasing size of array with default values to fix the crash.

Change-Id: I036f07700bfea7a74730862a4463210817eea6e5
Signed-off-by: Srinivasarao P <spathi@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-8064-display.c b/arch/arm/mach-msm/board-8064-display.c
index 24f8f9f..da11941 100644
--- a/arch/arm/mach-msm/board-8064-display.c
+++ b/arch/arm/mach-msm/board-8064-display.c
@@ -691,9 +691,11 @@
 	}
 };
 
-static int dsi2lvds_gpio[2] = {
+static int dsi2lvds_gpio[4] = {
 	LPM_CHANNEL,/* Backlight PWM-ID=0 for PMIC-GPIO#24 */
-	0x1F08 /* DSI2LVDS Bridge GPIO Output, mask=0x1f, out=0x08 */
+	0x1F08, /* DSI2LVDS Bridge GPIO Output, mask=0x1f, out=0x08 */
+	-1,
+	-1
 };
 static struct msm_panel_common_pdata mipi_dsi2lvds_pdata = {
 	.gpio_num = dsi2lvds_gpio,