Commit e751e4be authored by Ruijing Dong's avatar Ruijing Dong Committed by Alex Deucher
Browse files

drm/amdgpu/vcn: adjust unified queue code format



Fixed some errors and warnings found by checkpatch.pl.

Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarRuijing Dong <ruijing.dong@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent bb4f196b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -896,7 +896,7 @@ static int amdgpu_vcn_enc_get_create_msg(struct amdgpu_ring *ring, uint32_t hand
					 struct amdgpu_ib *ib_msg,
					 struct dma_fence **fence)
{
	unsigned ib_size_dw = 16;
	unsigned int ib_size_dw = 16;
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	struct dma_fence *f = NULL;
@@ -962,7 +962,7 @@ static int amdgpu_vcn_enc_get_destroy_msg(struct amdgpu_ring *ring, uint32_t han
					  struct amdgpu_ib *ib_msg,
					  struct dma_fence **fence)
{
	unsigned ib_size_dw = 16;
	unsigned int ib_size_dw = 16;
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	struct dma_fence *f = NULL;
+4 −4

File changed.

Contains only whitespace changes.