msm: board-qrd7627a: Enable BT/FM.

1) GPIO 114 on QRD is BT SYS RESET GPIO, which was
owned by modem proc, as a result set value/direction from
apps proc was not effective.
2) After using the correct gpio_tlmm_config api, apps proc
is able to own the gpio.
3) Once the GPIO is owned by apps proc, the set value/direction
for this GPIO are effective and as desired.
4) Correct BT_SYS_RESET GPIO functionality enables BT/FM SOC
to come out of RESET and perform as required.

Change-Id: I77c3baa49d4396a9fdc2970c0c4988382a21a974
Signed-off-by: Rahul Kashyap <rkashyap@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-qrd7627a.c b/arch/arm/mach-msm/board-qrd7627a.c
index 91bb455..537251a 100644
--- a/arch/arm/mach-msm/board-qrd7627a.c
+++ b/arch/arm/mach-msm/board-qrd7627a.c
@@ -676,6 +676,10 @@
 		goto reg_fail;
 	}
 
+	gpio_tlmm_config(GPIO_CFG(GPIO_BT_SYS_REST_EN, 0,
+				GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL,
+				GPIO_CFG_2MA), GPIO_CFG_ENABLE);
+
 	/*setup Bahama_sys_reset_n*/
 	rc = gpio_request(GPIO_BT_SYS_REST_EN, "bahama sys_rst_n");
 	if (rc < 0) {