git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b671359
)
Correct SPL use of WATCHDOG_AUTOSTART
author
Simon Glass
<sjg@chromium.org>
Sun, 5 Feb 2023 22:44:31 +0000
(15:44 -0700)
committer
Tom Rini
<trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000
(07:41 -0500)
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>
board/kontron/sl28/sl28.c
patch
|
blob
|
history
diff --git
a/board/kontron/sl28/sl28.c
b/board/kontron/sl28/sl28.c
index
e78a0d5
..
89948e0
100644
(file)
--- a/
board/kontron/sl28/sl28.c
+++ b/
board/kontron/sl28/sl28.c
@@
-157,7
+157,7
@@
int fsl_board_late_init(void)
* If the watchdog isn't enabled at reset (which is a configuration
* option) disabling it doesn't hurt either.
*/
- if (!
CONFIG_IS_ENABLED(
WATCHDOG_AUTOSTART))
+ if (!
IS_ENABLED(CONFIG_
WATCHDOG_AUTOSTART))
stop_recovery_watchdog();
return 0;