mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-30 16:35:37 +00:00
Correct SPL use of WATCHDOG_AUTOSTART
This converts 1 usage of this option to the non-SPL form, since there is no SPL_WATCHDOG_AUTOSTART defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b671359069
commit
a6c38a280c
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ int fsl_board_late_init(void)
|
||||||
* If the watchdog isn't enabled at reset (which is a configuration
|
* If the watchdog isn't enabled at reset (which is a configuration
|
||||||
* option) disabling it doesn't hurt either.
|
* option) disabling it doesn't hurt either.
|
||||||
*/
|
*/
|
||||||
if (!CONFIG_IS_ENABLED(WATCHDOG_AUTOSTART))
|
if (!IS_ENABLED(CONFIG_WATCHDOG_AUTOSTART))
|
||||||
stop_recovery_watchdog();
|
stop_recovery_watchdog();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue