diff options
author | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-01-14 14:28:14 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2025-01-22 10:22:34 +0100 |
commit | fb30f75655cdd1bf838827a8461b3434c07b1a62 (patch) | |
tree | 13e00595c91a9f43fe851bcd1c1dbe78fb52e103 | |
parent | 302f866e5c2671919f4900983a59476966c84156 (diff) |
cyclic: Fix typo in struct cyclic_info description
Replace delay_ns by delay_us which is the field name used into
struct cyclic_info.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | include/cyclic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cyclic.h b/include/cyclic.h index c6c463d68e9..df8b725e3d0 100644 --- a/include/cyclic.h +++ b/include/cyclic.h @@ -20,7 +20,7 @@ * * @func: Function to call periodically * @name: Name of the cyclic function, e.g. shown in the commands - * @delay_ns: Delay is ns after which this function shall get executed + * @delay_us: Delay is us after which this function shall get executed * @start_time_us: Start time in us, when this function started its execution * @cpu_time_us: Total CPU time of this function * @run_cnt: Counter of executions occurances |