9
0
Fork 0

ARM i.MX28: Add missing return value in non-void function

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-02-15 19:20:53 +01:00
parent 4008fef944
commit efc93a7429
1 changed files with 2 additions and 0 deletions

View File

@ -45,5 +45,7 @@ static int imx28_init(void)
* of resetting it. Use a software reset only.
*/
writel(HW_CLKCTRL_WDOG_POR_DISABLE, IMX_CCM_BASE + HW_CLKCTRL_RESET);
return 0;
}
postcore_initcall(imx28_init);