From: Sihyun, Park Date: Mon, 12 Apr 2021 06:36:32 +0000 (+0900) Subject: amlogic: drm: disable 'meson_fb is NULL! warning log X-Git-Tag: submit/tizen/20210602.005153~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=678d419a343f75547de83ca20cd0656c0f464c5f;p=platform%2Fkernel%2Flinux-amlogic.git amlogic: drm: disable 'meson_fb is NULL! warning log The log is printed when ovelay layer has no content to display, and it is normal thing. Change-Id: I83f078a2670f5f98098d5508603b77b6d5820d4e Signed-off-by: Sihyun, Park Signed-off-by: Seung-Woo Kim --- diff --git a/drivers/amlogic/drm/meson_plane.c b/drivers/amlogic/drm/meson_plane.c index 08270f1c7197..7a66a9cc1ee7 100644 --- a/drivers/amlogic/drm/meson_plane.c +++ b/drivers/amlogic/drm/meson_plane.c @@ -152,7 +152,7 @@ static int meson_plane_fb_check(struct drm_plane *plane, #ifdef CONFIG_DRM_MESON_USE_ION meson_fb = container_of(fb, struct am_meson_fb, base); if (!meson_fb) { - DRM_INFO("meson_fb is NULL!\n"); + DRM_DEBUG("meson_fb is NULL!\n"); return -EINVAL; } phyaddr = am_meson_gem_object_get_phyaddr(drv, meson_fb->bufp);