From: Alexander Stein Date: Fri, 23 May 2025 06:40:41 +0000 (+0200) Subject: drm/arm/malidp: Silence informational message X-Git-Tag: v6.16-rc3~23^2~1^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ecbad4853f83d9853d7bb0c2d8373afab8851d3;p=thirdparty%2Flinux.git drm/arm/malidp: Silence informational message When checking for unsupported expect an error is printed every time. This spams the log for platforms where this is expected, e.g. ls1028a having a Vivante (etnaviv) GPU and Mali display processor. Signed-off-by: Alexander Stein Signed-off-by: Liviu Dudau Link: https://lore.kernel.org/r/20250523064042.3275926-1-alexander.stein@ew.tq-group.com --- diff --git a/drivers/gpu/drm/arm/malidp_planes.c b/drivers/gpu/drm/arm/malidp_planes.c index 34547edf1ee3c..87f2e5ee87907 100644 --- a/drivers/gpu/drm/arm/malidp_planes.c +++ b/drivers/gpu/drm/arm/malidp_planes.c @@ -159,7 +159,7 @@ bool malidp_format_mod_supported(struct drm_device *drm, } if (!fourcc_mod_is_vendor(modifier, ARM)) { - DRM_ERROR("Unknown modifier (not Arm)\n"); + DRM_DEBUG_KMS("Unknown modifier (not Arm)\n"); return false; }