This patch adds a reset fallback if base address of watchdog is not set.
This is intended for a targets not compatible with imx-21 watchdog,
i.MX1 for example.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
 {
        unsigned int wcr_enable;
 
+       if (!wdog_base)
+               goto reset_fallback;
+
        if (!IS_ERR(wdog_clk))
                clk_enable(wdog_clk);
 
        /* delay to allow the serial port to show the message */
        mdelay(50);
 
+reset_fallback:
        /* we'll take a jump through zero as a poor second */
        soft_restart(0);
 }