drm: kirin: Remove useless "Scale not support" error message
authorJohn Stultz <[email protected]>
Thu, 21 Jun 2018 23:01:16 +0000 (16:01 -0700)
committerDaniel Vetter <[email protected]>
Mon, 25 Jun 2018 16:09:38 +0000 (18:09 +0200)
The driver doesn't support scaling, but when an atomic test is done
it repeatedly spits out this warning which isn't particularly useful.

So just remove the error message.

Cc: Xinliang Liu <[email protected]>
Cc: Rongrong Zou <[email protected]>
Cc: Xinwei Kong <[email protected]>
Cc: Chen Feng <[email protected]>
Cc: David Airlie <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Peter Griffin <[email protected]>
Cc: [email protected]
Signed-off-by: John Stultz <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c

index 2269be91f3e16936957854931d3c848bfcf54647..bb774202a5a1bc41d01dc6f8369db37822149f48 100644 (file)
@@ -859,7 +859,6 @@ static int ade_plane_atomic_check(struct drm_plane *plane,
                return PTR_ERR(crtc_state);
 
        if (src_w != crtc_w || src_h != crtc_h) {
-               DRM_ERROR("Scale not support!!!\n");
                return -EINVAL;
        }