msm: ipc: Correct PIL name for GSS to be 'gss' not 'gnss'

The PIL driver expects pil_get() to be called with 'gss' not 'gnss'.
Fix this.

Change-Id: Ib22af799275d6a217a53dd4b29fa0ece1645f34b
Signed-off-by: Matt Wagantall <mattw@codeaurora.org>
diff --git a/arch/arm/mach-msm/ipc_socket.c b/arch/arm/mach-msm/ipc_socket.c
index 4b0d26a..6e8c99e 100644
--- a/arch/arm/mach-msm/ipc_socket.c
+++ b/arch/arm/mach-msm/ipc_socket.c
@@ -53,7 +53,7 @@
 	/* Load GNSS for Standalone 8064 but not for Fusion 3 */
 	if (cpu_is_apq8064()) {
 		if (socinfo_get_platform_subtype() == 0x0)
-			pil = pil_get("gnss");
+			pil = pil_get("gss");
 	} else {
 		pil = pil_get("modem");
 	}