diff options
| author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-12-31 20:21:57 +0100 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2026-01-29 10:00:59 -0600 |
| commit | eed514b11d04a2f8a949521ad3bffba3ec98bd2f (patch) | |
| tree | 664c76735cd209ada02305a5be79e53262ac198e /drivers | |
| parent | 7c612df6a4007e3545c33c020210df61826b8788 (diff) | |
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>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/video-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c index 53641fc28b6..228d6bacc58 100644 --- a/drivers/video/video-uclass.c +++ b/drivers/video/video-uclass.c @@ -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; } |
