ASoC: msm: 8960: set headset plug-type to US by default

New shockwave 2 CDP addressed the undesirable connection which has
US/Europe plug type switch reversed. Machine driver needs to pull
8902 PMIC GPIO 35 low instead of high to default plug-type to US.

Change-Id: I4854c4f9e56b1d1ff255556c535b91193449672e
Signed-off-by: Patrick Lai <plai@codeaurora.org>
diff --git a/sound/soc/msm/msm8960.c b/sound/soc/msm/msm8960.c
index fd00253..548b834 100644
--- a/sound/soc/msm/msm8960.c
+++ b/sound/soc/msm/msm8960.c
@@ -1095,7 +1095,7 @@
 		pr_err("%s: Failed to configure gpio %d\n", __func__,
 			PM8921_GPIO_PM_TO_SYS(35));
 	else
-		gpio_direction_output(PM8921_GPIO_PM_TO_SYS(35), 1);
+		gpio_direction_output(PM8921_GPIO_PM_TO_SYS(35), 0);
 
 	return 0;
 }