Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/ast: Fix HW cursor image

The translation from the X driver to the KMS one typo'ed a couple
of array indices, causing the HW cursor to look weird (blocky with
leaking edge colors). This fixes it.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: stable@vger.kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by

Benjamin Herrenschmidt and committed by
Dave Airlie
1e99cfa8 46d987af

+2 -2
+2 -2
drivers/gpu/drm/ast/ast_mode.c
··· 1104 1104 srcdata32[1].ul = *((u32 *)(srcxor + 4)) & 0xf0f0f0f0; 1105 1105 data32.b[0] = srcdata32[0].b[1] | (srcdata32[0].b[0] >> 4); 1106 1106 data32.b[1] = srcdata32[0].b[3] | (srcdata32[0].b[2] >> 4); 1107 - data32.b[2] = srcdata32[0].b[1] | (srcdata32[1].b[0] >> 4); 1108 - data32.b[3] = srcdata32[0].b[3] | (srcdata32[1].b[2] >> 4); 1107 + data32.b[2] = srcdata32[1].b[1] | (srcdata32[1].b[0] >> 4); 1108 + data32.b[3] = srcdata32[1].b[3] | (srcdata32[1].b[2] >> 4); 1109 1109 1110 1110 writel(data32.ul, dstxor); 1111 1111 csum += data32.ul;