dev: gcdb: Initialize the flag to indicate use of panel enable gpio

Initialize the panel info structure flag that is used to indicate
that the panel enable gpio needs to be configured for the
corresponding panel. This is needed to selectively support panels
that use the enable gpio on a particular platform.

Change-Id: Iec46dac5baac263bf07190d5613d49ffef7a33e9
diff --git a/dev/gcdb/display/panel_display.c b/dev/gcdb/display/panel_display.c
index 21936f5..38d1721 100644
--- a/dev/gcdb/display/panel_display.c
+++ b/dev/gcdb/display/panel_display.c
@@ -114,6 +114,8 @@
 								 & 0x1);
 	pinfo->mipi.mode_gpio_state = pstruct->paneldata->mode_gpio_state;
 	pinfo->mipi.bitclock = pstruct->paneldata->panel_bitclock_freq;
+	pinfo->mipi.use_enable_gpio =
+		pstruct->paneldata->panel_with_enable_gpio;
 
 	/* Video Panel configuration */
 	pinfo->mipi.pulse_mode_hsa_he = pstruct->videopanel->hsync_pulse;