diff options
author | 2025-05-23 08:40:41 +0200 | |
---|---|---|
committer | 2025-06-12 13:11:25 +0100 | |
commit | 8ecbad4853f83d9853d7bb0c2d8373afab8851d3 (patch) | |
tree | e0dd54bc115a62684169577fc9c9c04fb98aeb8f | |
parent | drm/ssd130x: fix ssd132x_clear_screen() columns (diff) | |
download | wireguard-linux-8ecbad4853f83d9853d7bb0c2d8373afab8851d3.tar.xz wireguard-linux-8ecbad4853f83d9853d7bb0c2d8373afab8851d3.zip |
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 <alexander.stein@ew.tq-group.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://lore.kernel.org/r/20250523064042.3275926-1-alexander.stein@ew.tq-group.com
-rw-r--r-- | drivers/gpu/drm/arm/malidp_planes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/arm/malidp_planes.c b/drivers/gpu/drm/arm/malidp_planes.c index 34547edf1ee3..87f2e5ee8790 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; } |