Patch "drm/ast: Fix invalid usage of AST_MAX_HWC_WIDTH in cursor atomic_check" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/ast: Fix invalid usage of AST_MAX_HWC_WIDTH in cursor atomic_check

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-ast-fix-invalid-usage-of-ast_max_hwc_width-in-cu.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit aa6f8c17c882f6b4942a999b5a756341847f07df
Author: Thomas Zimmermann <tzimmermann@xxxxxxx>
Date:   Tue Feb 9 14:46:24 2021 +0100

    drm/ast: Fix invalid usage of AST_MAX_HWC_WIDTH in cursor atomic_check
    
    [ Upstream commit ee4a92d690f30f3793df942939726bec0338e65b ]
    
    Use AST_MAX_HWC_HEIGHT for setting offset_y in the cursor plane's
    atomic_check. The code used AST_MAX_HWC_WIDTH instead. This worked
    because both constants has the same value.
    
    Signed-off-by: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Acked-by: Gerd Hoffmann <kraxel@xxxxxxxxxx>
    Link: https://patchwork.freedesktop.org/patch/msgid/20210209134632.12157-3-tzimmermann@xxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
index 0a1e1cf57e19..a3c2f76668ab 100644
--- a/drivers/gpu/drm/ast/ast_mode.c
+++ b/drivers/gpu/drm/ast/ast_mode.c
@@ -688,7 +688,7 @@ ast_cursor_plane_helper_atomic_update(struct drm_plane *plane,
 	unsigned int offset_x, offset_y;
 
 	offset_x = AST_MAX_HWC_WIDTH - fb->width;
-	offset_y = AST_MAX_HWC_WIDTH - fb->height;
+	offset_y = AST_MAX_HWC_HEIGHT - fb->height;
 
 	if (state->fb != old_state->fb) {
 		/* A new cursor image was installed. */



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux