target: msm8952: Turn on the vibrator for qm215

Currently the vibrator is turned on only if the target is PMI
enabled. Turn it on for the qm215 as well, which is not a PMI
based target and the vibrator is present on the primary PMIC.

Change-Id: I6e3a2f57bde4d2c1f6fb33cf230ba79721930ece
Signed-off-by: Kiran Gunda <kgunda@codeaurora.org>
diff --git a/target/msm8952/init.c b/target/msm8952/init.c
index 7c94d06..87f5d3b 100644
--- a/target/msm8952/init.c
+++ b/target/msm8952/init.c
@@ -323,7 +323,7 @@
 
 #if PON_VIB_SUPPORT
 	/* turn on vibrator to indicate that phone is booting up to end user */
-	if(target_is_pmi_enabled())
+	if(target_is_pmi_enabled() || platform_is_qm215())
 		vib_timed_turn_on(VIBRATE_TIME);
 #endif