target: msm8974: Remove GCC_WDOG_DEBUG_DISABLE from the reboot sequence.

WDOG_DEBUG was disabled due to a HW bug during the bringup.
WDOG_DEBUG is XPU protected and disabling it is causing XPU
violations. Remove it from reboot sequence as the HW bug is resolved.

CRs-Fixed: 622426
Change-Id: Ia6ff07fd8ac62b4ad3ab36b42375cdfdc5eeb130
diff --git a/target/msm8974/init.c b/target/msm8974/init.c
index 20d3b02..400e911 100644
--- a/target/msm8974/init.c
+++ b/target/msm8974/init.c
@@ -521,17 +521,6 @@
 	else
 		pm8x41_reset_configure(reset_type);
 
-	/* Disable Watchdog Debug.
-	 * Required becuase of a H/W bug which causes the system to
-	 * reset partially even for non watchdog resets.
-	 */
-	writel(readl(GCC_WDOG_DEBUG) & ~(1 << WDOG_DEBUG_DISABLE_BIT), GCC_WDOG_DEBUG);
-
-	dsb();
-
-	/* Wait until the write takes effect. */
-	while(readl(GCC_WDOG_DEBUG) & (1 << WDOG_DEBUG_DISABLE_BIT));
-
 	/* Drop PS_HOLD for MSM */
 	writel(0x00, MPM2_MPM_PS_HOLD);