summaryrefslogtreecommitdiff
path: root/doc/develop/cyclic.rst
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-10-23 08:33:56 -0600
committerTom Rini <trini@konsulko.com>2024-10-23 08:33:56 -0600
commit7af813341d5df064aeee764c31ffb50ffcdf4eb6 (patch)
tree54b73688ebc3a841f0d347e6f4f3da84aaa294b4 /doc/develop/cyclic.rst
parent392ff1449f7d30cc48fd4d17320d05882cd68f2e (diff)
parented3410ee6049a7683718e8255575ad55ee1bdefd (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-watchdog
CI: https://dev.azure.com/sr0718/u-boot/_build/results?buildId=378&view=results * watchdog: gpio_wdt: add support for stoppable devices (Rasmus) * watchdog: Add DaVinci's watchdog support (Bastien) * cyclic: disentangling cyclic API from schedule() (Rasmus) * watchdog: introduce separate SPL symbol for WDT_GPIO (Rasmus)
Diffstat (limited to 'doc/develop/cyclic.rst')
-rw-r--r--doc/develop/cyclic.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/develop/cyclic.rst b/doc/develop/cyclic.rst
index 893c269099a..6f1da6f0d9b 100644
--- a/doc/develop/cyclic.rst
+++ b/doc/develop/cyclic.rst
@@ -49,8 +49,8 @@ executed all 10ms.
How is this cyclic functionality integrated / executed?
--------------------------------------------------------
-The cyclic infrastructure integrates the main function responsible for
-calling all registered cyclic functions cyclic_run() into the common
-WATCHDOG_RESET macro. This guarantees that cyclic_run() is executed
-very often, which is necessary for the cyclic functions to get scheduled
-and executed at their configured periods.
+The cyclic infrastructure integrates cyclic_run(), the main function
+responsible for calling all registered cyclic functions, into the
+common schedule() function. This guarantees that cyclic_run() is
+executed very often, which is necessary for the cyclic functions to
+get scheduled and executed at their configured periods.