diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/si_dma.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/si_dma.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/si_dma.c b/drivers/gpu/drm/amd/amdgpu/si_dma.c index 9aa0e11ee673..11db5b755832 100644 --- a/drivers/gpu/drm/amd/amdgpu/si_dma.c +++ b/drivers/gpu/drm/amd/amdgpu/si_dma.c @@ -708,6 +708,8 @@ static const struct amd_ip_funcs si_dma_ip_funcs = {  	.soft_reset = si_dma_soft_reset,  	.set_clockgating_state = si_dma_set_clockgating_state,  	.set_powergating_state = si_dma_set_powergating_state, +	.dump_ip_state = NULL, +	.print_ip_state = NULL,  };  static const struct amdgpu_ring_funcs si_dma_ring_funcs = { @@ -761,7 +763,7 @@ static void si_dma_set_irq_funcs(struct amdgpu_device *adev)   * @src_offset: src GPU address   * @dst_offset: dst GPU address   * @byte_count: number of bytes to xfer - * @tmz: is this a secure operation + * @copy_flags: unused   *   * Copy GPU buffers using the DMA engine (VI).   * Used by the amdgpu ttm implementation to move pages if @@ -771,7 +773,7 @@ static void si_dma_emit_copy_buffer(struct amdgpu_ib *ib,  				       uint64_t src_offset,  				       uint64_t dst_offset,  				       uint32_t byte_count, -				       bool tmz) +				       uint32_t copy_flags)  {  	ib->ptr[ib->length_dw++] = DMA_PACKET(DMA_PACKET_COPY,  					      1, 0, 0, byte_count); | 
