diff options
author | Boschung, Rainer <Rainer.Boschung@keymile.com> | 2014-06-03 09:05:14 +0200 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-08-01 14:18:17 -0700 |
commit | 0f8062b25b31988bf62f166aa5b988add8454e42 (patch) | |
tree | 7e8143925466d922e6f3264382bebb1096716c62 /include | |
parent | 60b295672d61fe79e6af3d9e4f3e8bd23bf3b4ad (diff) | |
download | u-boot-imx-0f8062b25b31988bf62f166aa5b988add8454e42.zip u-boot-imx-0f8062b25b31988bf62f166aa5b988add8454e42.tar.gz u-boot-imx-0f8062b25b31988bf62f166aa5b988add8454e42.tar.bz2 |
mpc85xx: watchdog initialisation added
Function to inititialize the cpu watchdog added.
Signed-off-by: Rainer Boschung <rainer.boschung@keymile.com>
[York Sun: Add prototype in watchdog.h]
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/watchdog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/watchdog.h b/include/watchdog.h index aacacb9..bd0a8d6 100644 --- a/include/watchdog.h +++ b/include/watchdog.h @@ -95,4 +95,8 @@ int init_func_watchdog_reset(void); #if defined(CONFIG_HW_WATCHDOG) && !defined(__ASSEMBLY__) void hw_watchdog_init(void); #endif + +#if defined(CONFIG_MPC85xx) && !defined(__ASSEMBLY__) + void init_85xx_watchdog(void); +#endif #endif /* _WATCHDOG_H_ */ |