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

    drm/radeon: fix endian swap on hawaii clear state buffer setup

to the 3.14-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-radeon-fix-endian-swap-on-hawaii-clear-state-buffer-setup.patch
and it can be found in the queue-3.14 subdirectory.

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


>From a8947f576728a66bd3aac629bd8ca021a010c808 Mon Sep 17 00:00:00 2001
From: Alex Deucher <alexdeuc...@gmail.com>
Date: Wed, 2 Apr 2014 08:42:48 -0400
Subject: drm/radeon: fix endian swap on hawaii clear state buffer setup
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

From: Alex Deucher <alexdeuc...@gmail.com>

commit a8947f576728a66bd3aac629bd8ca021a010c808 upstream.

Need to swap on BE.

Signed-off-by: Alex Deucher <alexander.deuc...@amd.com>
Reviewed-by: Christian König <christian.koe...@amd.com>
Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>

---
 drivers/gpu/drm/radeon/cik.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/gpu/drm/radeon/cik.c
+++ b/drivers/gpu/drm/radeon/cik.c
@@ -6521,8 +6521,8 @@ void cik_get_csb_buffer(struct radeon_de
                buffer[count++] = cpu_to_le32(0x00000000);
                break;
        case CHIP_HAWAII:
-               buffer[count++] = 0x3a00161a;
-               buffer[count++] = 0x0000002e;
+               buffer[count++] = cpu_to_le32(0x3a00161a);
+               buffer[count++] = cpu_to_le32(0x0000002e);
                break;
        default:
                buffer[count++] = cpu_to_le32(0x00000000);


Patches currently in stable-queue which might be from alexdeuc...@gmail.com are

queue-3.14/drm-radeon-call-drm_edid_to_eld-when-we-update-the-edid.patch
queue-3.14/drm-radeon-fix-endian-swap-on-hawaii-clear-state-buffer-setup.patch
queue-3.14/drm-radeon-fix-typo-in-spectre_golden_registers.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to