Display the panic logo at the top center of the screen when drm_panic_type is set to DRM_PANIC_TYPE_USER to keep the layout properly aligned.
Signed-off-by: Dileep Sankhla <[email protected]> --- drivers/gpu/drm/drm_panic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/drm_panic.c b/drivers/gpu/drm/drm_panic.c index d6d3b8d85dea..c7fecc5e857a 100644 --- a/drivers/gpu/drm/drm_panic.c +++ b/drivers/gpu/drm/drm_panic.c @@ -491,6 +491,8 @@ static void draw_panic_screen_user(struct drm_scanout_buffer *sb) r_screen = DRM_RECT_INIT(0, 0, sb->width, sb->height); drm_panic_logo_rect(&r_logo, font); + /* Center the panic logo */ + drm_rect_translate(&r_logo, (sb->width - r_logo.x2) / 2, 0); msg_width = min(get_max_line_len(panic_msg, panic_msg_lines) * font->width, sb->width); msg_height = min(panic_msg_lines * font->height, sb->height); -- 2.43.0
