ASoC: msm8930: GPIO level insert is low for 8x30 sglte

Design is made for Normally Open(NO) Jack in 8x30 sglte.
Earlier we had Normally Closed(NC), so the gpio level
earlier was value 1.Now this level returns 0 when inserted.
Update gpio level variable to detect insert/remove
accordingly for sglte.

Change-Id: I1c54033e263f39fac290db651a99dfaea0bdb5d7
Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
diff --git a/sound/soc/msm/msm8930.c b/sound/soc/msm/msm8930.c
index baae523..f21a648 100644
--- a/sound/soc/msm/msm8930.c
+++ b/sound/soc/msm/msm8930.c
@@ -821,8 +821,10 @@
 	codec_clk = clk_get(cpu_dai->dev, "osr_clk");
 
 	mbhc_cfg.gpio = 37;
-	if (socinfo_get_platform_subtype() == PLATFORM_SUBTYPE_SGLTE)
+	if (socinfo_get_platform_subtype() == PLATFORM_SUBTYPE_SGLTE) {
 		mbhc_cfg.gpio = GPIO_HS_DET;
+		mbhc_cfg.gpio_level_insert = 0;
+	}
 
 	mbhc_cfg.gpio_irq = gpio_to_irq(mbhc_cfg.gpio);
 	sitar_hs_detect(codec, &mbhc_cfg);