36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From eb23cffdd7f085149799e5eda12a9aff792cc34d Mon Sep 17 00:00:00 2001
|
|
From: Michael Tretter <m.tretter@pengutronix.de>
|
|
Date: Mon, 9 Oct 2023 12:37:53 +0200
|
|
Subject: [PATCH] drm/rockchip: vop2: Demote message in mod_supported to
|
|
drm_dbg_kms
|
|
|
|
Checking if a modifier is supported by a plane is normal behavior. It is
|
|
normal that a plane may not support certain modifiers. Failing the check
|
|
doesn't justify an error message in the kernel log and may mislead
|
|
users.
|
|
|
|
Demote the error message to drm_dbg_kms to only print the message if the
|
|
respective debug messages are enabled. This is similar to the behavior
|
|
in rockchip_drm_vop.c.
|
|
|
|
Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
|
|
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
|
Link: https://patchwork.freedesktop.org/patch/msgid/20231009103753.830458-1-m.tretter@pengutronix.de
|
|
---
|
|
drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
|
|
+++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
|
|
@@ -478,8 +478,8 @@ static bool rockchip_vop2_mod_supported(
|
|
return true;
|
|
|
|
if (!rockchip_afbc(plane, modifier)) {
|
|
- drm_err(vop2->drm, "Unsupported format modifier 0x%llx\n",
|
|
- modifier);
|
|
+ drm_dbg_kms(vop2->drm, "Unsupported format modifier 0x%llx\n",
|
|
+ modifier);
|
|
|
|
return false;
|
|
}
|