aboutsummaryrefslogtreecommitdiff
path: root/include/asm-generic
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2022-11-17 09:20:34 +0100
committerStefan Roese <sr@denx.de>2022-11-22 08:56:26 +0100
commit5cbd0295392be32be3bb80da4fa3edee9a5c7287 (patch)
tree65c81cde441b1eb0e737988ed4fb307331ab0d1f /include/asm-generic
parentdca313ff9dea03d523e3a63568b5ed265f811c91 (diff)
downloadu-boot-5cbd0295392be32be3bb80da4fa3edee9a5c7287.zip
u-boot-5cbd0295392be32be3bb80da4fa3edee9a5c7287.tar.gz
u-boot-5cbd0295392be32be3bb80da4fa3edee9a5c7287.tar.bz2
watchdog: Drop GD_FLG_WDT_READY as it's not used any more
Since commit c2fd0ca1a822 ("watchdog: Integrate watchdog triggering into the cyclic framework") GD_FLG_WDT_READY has become write-only. This patch now removes this flag completely. The vacant spot in gd_flags is filled with the newly introduced GD_FLG_CYCLIC_RUNNING flag. Suggested-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/global_data.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
index 8882912..da17ac8 100644
--- a/include/asm-generic/global_data.h
+++ b/include/asm-generic/global_data.h
@@ -635,9 +635,9 @@ enum gd_flags {
*/
GD_FLG_LOG_READY = 0x10000,
/**
- * @GD_FLG_WDT_READY: watchdog is ready for use
+ * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
*/
- GD_FLG_WDT_READY = 0x20000,
+ GD_FLG_CYCLIC_RUNNING = 0x20000,
/**
* @GD_FLG_SKIP_LL_INIT: don't perform low-level initialization
*/
@@ -650,10 +650,6 @@ enum gd_flags {
* @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests
*/
GD_FLG_FDT_CHANGED = 0x100000,
- /**
- * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
- */
- GD_FLG_CYCLIC_RUNNING = 0x200000,
};
#endif /* __ASSEMBLY__ */