Merge tag 'drm-misc-next-fixes-2026-08-20' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-next

One patch to remove a WARN in favour of drm_warn.

Signed-off-by: Dave Airlie <airlied@redhat.com>

From: Maxime Ripard <mripard@redhat.com>
Link: https://patch.msgid.link/20260820-fabulous-nimble-woodpecker-ffa695@houat
This commit is contained in:
Dave Airlie
2026-08-24 11:19:43 +10:00

View File

@@ -869,8 +869,9 @@ static void validate_blend_mode_for_alpha_formats(struct drm_plane *plane)
for (i = 0; i < plane->format_count; i++) {
fmt = drm_format_info(plane->format_types[i]);
if (fmt->has_alpha) {
WARN(1, "[PLANE:%d:%s] pixel format with alpha exposed but blend mode not setup",
plane->base.id, plane->name);
drm_warn(plane->dev,
"[PLANE:%d:%s] pixel format with alpha exposed but blend mode not setup. Please fix.\n",
plane->base.id, plane->name);
break;
}
}