diff options
author | Marek Olšák <[email protected]> | 2015-08-23 13:05:53 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-08-29 23:03:21 +0200 |
commit | 379e3382e8631fdd15c28c6643512205483e7b99 (patch) | |
tree | 13906ec2ab0ba55831ab8cc531742d38508a1b78 /src/gallium/drivers/radeonsi/si_dma.c | |
parent | 437cb1e3f482570447501526927df4d80c845bf5 (diff) |
radeonsi: remove no-op 32-bit masking
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_dma.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_dma.c b/src/gallium/drivers/radeonsi/si_dma.c index 7a0076e7aa9..1a7eeaecf9e 100644 --- a/src/gallium/drivers/radeonsi/si_dma.c +++ b/src/gallium/drivers/radeonsi/si_dma.c @@ -86,8 +86,8 @@ static void si_dma_copy_buffer(struct si_context *ctx, for (i = 0; i < ncopy; i++) { csize = size < max_csize ? size : max_csize; cs->buf[cs->cdw++] = SI_DMA_PACKET(SI_DMA_PACKET_COPY, sub_cmd, csize); - cs->buf[cs->cdw++] = dst_offset & 0xffffffff; - cs->buf[cs->cdw++] = src_offset & 0xffffffff; + cs->buf[cs->cdw++] = dst_offset; + cs->buf[cs->cdw++] = src_offset; cs->buf[cs->cdw++] = (dst_offset >> 32UL) & 0xff; cs->buf[cs->cdw++] = (src_offset >> 32UL) & 0xff; dst_offset += csize << shift; |