diff options
| author | Patrice Chotard <[email protected]> | 2026-07-06 18:06:08 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-07-16 16:11:11 -0600 |
| commit | 08af4faa0f0eac4622e52e699729bd157d6d806a (patch) | |
| tree | ba28fb97c888c3bea4eacae239200789ab6d7b19 | |
| parent | 1296a428c67cf103eca482d4a63349661c1b799f (diff) | |
cyclic: replace uint64_t by u64 suggested by b4
For new patch, b4 is suggested to replace type 'uint64_t' by 'u64' :
CHECK: Prefer kernel type 'u64' over 'uint64_t'
Update cyclic.c accordingly in order to be coherent with following commit.
Signed-off-by: Patrice Chotard <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
| -rw-r--r-- | common/cyclic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cyclic.c b/common/cyclic.c index ec952a01ee1..b37cd6d8ff0 100644 --- a/common/cyclic.c +++ b/common/cyclic.c @@ -41,7 +41,7 @@ static bool cyclic_is_registered(const struct cyclic_info *cyclic) } void cyclic_register(struct cyclic_info *cyclic, cyclic_func_t func, - uint64_t delay_us, const char *name) + u64 delay_us, const char *name) { cyclic_unregister(cyclic); @@ -67,7 +67,7 @@ static void cyclic_run(void) { struct cyclic_info *cyclic; struct hlist_node *tmp; - uint64_t now, cpu_time; + u64 now, cpu_time; /* Prevent recursion */ if (gd->flags & GD_FLG_CYCLIC_RUNNING) |
