amd/vpelib: Amend log for tone map support check

[Why & How]
Amend the log when failing to support tone mapping.

Reviewed-by: Tomson Chang <tomson.chang@amd.com>
Reviewed-by: Jude Shih <Jude.Shih@amd.com>
Acked-by: Jack Chih <chiachih@amd.com>
Signed-off-by: Alan Liu <haoping.liu@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30531>
This commit is contained in:
Alan Liu
2024-04-24 15:44:50 +08:00
committed by Marge Bot
parent c5e2c4feaf
commit 4886ee5caf
+1 -1
View File
@@ -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, &param->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;
}
}