lkml.org 
[lkml]   [2014]   [May]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 3.14 061/140] drm/radeon: fix endian swap on hawaii clear state buffer setup
    Date
    3.14-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Alex Deucher <alexdeucher@gmail.com>

    commit a8947f576728a66bd3aac629bd8ca021a010c808 upstream.

    Need to swap on BE.

    Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
    Reviewed-by: Christian König <christian.koenig@amd.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@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);

    --
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2014-05-29 08:01    [W:4.105 / U:0.260 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site