mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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:
committed by
Tom Rini
parent
7c612df6a4
commit
eed514b11d
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user