From 678d419a343f75547de83ca20cd0656c0f464c5f Mon Sep 17 00:00:00 2001 From: "Sihyun, Park" Date: Mon, 12 Apr 2021 15:36:32 +0900 Subject: [PATCH] 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 --- drivers/amlogic/drm/meson_plane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1