video: correct label for cyclic video_idle

When the cyclic function video_idle() takes too long, a message like the
following is displayed:

   cyclic function video_init took too long: 87707us vs 5000us max

The text "video_init" is misleading. Replace it by "video_idle".

Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
This commit is contained in:
Heinrich Schuchardt 2025-12-31 20:21:57 +01:00 committed by Tom Rini
parent 7c612df6a4
commit eed514b11d

View File

@ -734,7 +734,7 @@ static int video_post_probe(struct udevice *dev)
uint ms = CONFIG_IF_ENABLED_INT(CYCLIC, VIDEO_SYNC_CYCLIC_MS);
cyclic_register(&uc_priv->cyc, video_idle, ms * 1000,
"video_init");
"video_idle");
uc_priv->cyc_active = true;
}