From 795750411d14f52d9a35bd14c3f00d2f1f8d1b26 Mon Sep 17 00:00:00 2001 From: Damon Ding Date: Wed, 22 Jan 2025 09:29:34 +0800 Subject: [PATCH] drm/rockchip: vop2: fix the log in vop2_plane_mask_check() Fix the unexpected '\n' in the middle of the log. Fixes: c6b6f4232c69 ("drm/rockchip: vop2: Add human readable log output info") Change-Id: Ifc857fb67187d9afd189cb7ff1e4dff0f31c9ab3 Signed-off-by: Damon Ding --- drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c index 5f74323b256a..1c0d3c4df190 100644 --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c @@ -14854,7 +14854,7 @@ static bool vop2_plane_mask_check(struct vop2 *vop2) plane_mask != vop2_data->plane_mask_base) { full_plane = vop2_plane_mask_to_string(vop2_data->plane_mask_base); current_plane = vop2_plane_mask_to_string(plane_mask); - DRM_WARN("all windows should be assigned, full plane mask: %s[0x%x], current plane mask: %s[0x%x\n]", + DRM_WARN("all windows should be assigned, full plane mask: %s[0x%x], current plane mask: %s[0x%x]\n", full_plane, vop2_data->plane_mask_base, current_plane, plane_mask); kfree(full_plane); kfree(current_plane);