board-8064: Correct UART GPIO IRQ to use as wakeup IRQ

IRQ for UART RX GPIO is wakeup source to MSM. Currently UART TX
GPIO's IRQ is configured as wakeup IRQ. With that APQ UART is not
receiving any wakeup when connected external modem is sending wakeup
byte. Hence correct the same by configuring UART RX GPIOs' IRQ line
as wakeup IRQ.

CRs-Fixed: 473028
Change-Id: I3df56f9eb0dd2f4dcb4f17f6819338e46bd313dd
Signed-off-by: Mayank Rana <mrana@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-8064.c b/arch/arm/mach-msm/board-8064.c
index 81aac6e..85d3bba 100644
--- a/arch/arm/mach-msm/board-8064.c
+++ b/arch/arm/mach-msm/board-8064.c
@@ -3329,7 +3329,7 @@
 			platform_device_register(&sglte2_qsc_8064_device);
 
 			/* GSBI4 UART device for Primay IPC */
-			apq8064_uartdm_gsbi4_pdata.wakeup_irq = gpio_to_irq(10);
+			apq8064_uartdm_gsbi4_pdata.wakeup_irq = gpio_to_irq(11);
 			apq8064_device_uartdm_gsbi4.dev.platform_data =
 						&apq8064_uartdm_gsbi4_pdata;
 			platform_device_register(&apq8064_device_uartdm_gsbi4);