drm/rockchip: vop2: fix the log in vop2_plane_mask_check()

Fix the unexpected '\n' in the middle of the log.

Fixes: c6b6f4232c ("drm/rockchip: vop2: Add human readable log output info")
Change-Id: Ifc857fb67187d9afd189cb7ff1e4dff0f31c9ab3
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
This commit is contained in:
Damon Ding
2025-01-22 09:29:34 +08:00
committed by Tao Huang
parent 2c67eda0e2
commit 795750411d

View File

@@ -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);