From 4886ee5cafd21f479cb2e6c083ba2bb989a91390 Mon Sep 17 00:00:00 2001 From: Alan Liu Date: Wed, 24 Apr 2024 15:44:50 +0800 Subject: [PATCH] amd/vpelib: Amend log for tone map support check [Why & How] Amend the log when failing to support tone mapping. Reviewed-by: Tomson Chang Reviewed-by: Jude Shih Acked-by: Jack Chih Signed-off-by: Alan Liu Part-of: --- src/amd/vpelib/src/core/vpelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vpelib/src/core/vpelib.c b/src/amd/vpelib/src/core/vpelib.c index c5a43d07c99..00bf74a4db6 100644 --- a/src/amd/vpelib/src/core/vpelib.c +++ b/src/amd/vpelib/src/core/vpelib.c @@ -391,7 +391,7 @@ enum vpe_status vpe_check_support( for (i = 0; i < param->num_streams; i++) { status = vpe_check_tone_map_support(vpe, ¶m->streams[i], param); if (status != VPE_STATUS_OK) { - vpe_log("fail input support check. status %d\n", (int)status); + vpe_log("fail tone map support check. status %d\n", (int)status); break; } }