target: msm8953: Turn off vibrator in exit path.

With performance changes, vibrator time may be more than actual,
bootloader execution time.
Change to turn off vibrator early in target exit path, to fix
this.

Change-Id: Ic26dc8594122d977a2b32d960f450031d8638892
diff --git a/target/msm8953/init.c b/target/msm8953/init.c
index 193b882..fbdaf06 100644
--- a/target/msm8953/init.c
+++ b/target/msm8953/init.c
@@ -514,6 +514,10 @@
 
 void target_uninit(void)
 {
+#if PON_VIB_SUPPORT
+	if(target_is_pmi_enabled())
+		turn_off_vib_early();
+#endif
 	mmc_put_card_to_sleep(dev);
 	sdhci_mode_disable(&dev->host);
 	if (crypto_initialized())