From: Yannick Fertre Date: Fri, 3 Jun 2022 13:42:50 +0000 (+0200) Subject: drm/stm: ltdc: remove error message about scaling X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fb37cfa032a90201af45c9e42a8549c57f1de573;p=linux.git drm/stm: ltdc: remove error message about scaling Remove error message about scaling & replace it by a debug message to avoid too much error. Signed-off-by: Yannick Fertre Acked-by: Raphael Gallais-Pou Signed-off-by: Philippe Cornu Link: https://patchwork.freedesktop.org/patch/msgid/20220603134250.592408-1-yannick.fertre@foss.st.com --- diff --git a/drivers/gpu/drm/stm/ltdc.c b/drivers/gpu/drm/stm/ltdc.c index 0de65be9cd65f..703993930a8d4 100644 --- a/drivers/gpu/drm/stm/ltdc.c +++ b/drivers/gpu/drm/stm/ltdc.c @@ -1218,7 +1218,8 @@ static int ltdc_plane_atomic_check(struct drm_plane *plane, /* Reject scaling */ if (src_w != new_plane_state->crtc_w || src_h != new_plane_state->crtc_h) { - DRM_ERROR("Scaling is not supported"); + DRM_DEBUG_DRIVER("Scaling is not supported"); + return -EINVAL; }