"Das U-Boot" Source Tree

doc: cyclic: remove reference to WATCHDOG_RESET

WATCHDOG_RESET is no more. Replace the reference by schedule().

While here, rearrange the sentence a bit so that "cyclic_run()"
becomes the object and "the main function responsible for calling all
registered cyclic functions" a parenthetical rather than the other way
around, which at least to me makes it more readable.

Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>

authored by

Rasmus Villemoes and committed by
Stefan Roese
62509453 f9318b06

+5 -5
+5 -5
doc/develop/cyclic.rst
··· 49 49 How is this cyclic functionality integrated / executed? 50 50 -------------------------------------------------------- 51 51 52 - The cyclic infrastructure integrates the main function responsible for 53 - calling all registered cyclic functions cyclic_run() into the common 54 - WATCHDOG_RESET macro. This guarantees that cyclic_run() is executed 55 - very often, which is necessary for the cyclic functions to get scheduled 56 - and executed at their configured periods. 52 + The cyclic infrastructure integrates cyclic_run(), the main function 53 + responsible for calling all registered cyclic functions, into the 54 + common schedule() function. This guarantees that cyclic_run() is 55 + executed very often, which is necessary for the cyclic functions to 56 + get scheduled and executed at their configured periods.