mach: msm: remove msm_mpm_pin enum from mpm.h

Value of MSM_MPM_PIN_* in msm_mpm_pin enum may be target
dependent so it's not good to keep them in generic mpm.h
file. So let's remove it from mpm.h and let client of these
APIs to pass their own interrupt number to these APIs.

Change-Id: I5360648ab10c7256ee4a6067bfb83314b311137b
Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-msm8x60.c b/arch/arm/mach-msm/board-msm8x60.c
index 8e02093..824cad8 100644
--- a/arch/arm/mach-msm/board-msm8x60.c
+++ b/arch/arm/mach-msm/board-msm8x60.c
@@ -8313,10 +8313,11 @@
 #endif
 
 #ifdef	CONFIG_MMC_MSM_SDC4_SUPPORT
+#define MSM_MPM_PIN_SDC4_DAT1	23
 static int msm_sdcc_cfg_mpm_sdiowakeup(struct device *dev, unsigned mode)
 {
 	struct platform_device *pdev;
-	enum msm_mpm_pin pin;
+	unsigned int pin;
 	int ret = 0;
 
 	pdev = container_of(dev, struct platform_device, dev);