aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
diff options
context:
space:
mode:
authorTom St Denis <[email protected]>2017-06-12 13:05:04 +0000
committerAlex Deucher <[email protected]>2017-06-15 15:50:27 +0000
commit2119d0db59a428749cc8a6e946f604cf93590c38 (patch)
tree2923fff3b25e62962a044dfe0f30e390faeef929 /drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
parentdrm/amd/amdgpu: gfx9 tidy ups (v2) (diff)
downloadkernel-2119d0db59a428749cc8a6e946f604cf93590c38.tar.gz
kernel-2119d0db59a428749cc8a6e946f604cf93590c38.zip
drm/amd/amdgpu: Rename KIQ ring to avoid spaces
Swap space for underscore in ring name. Signed-off-by: Tom St Denis <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
index dfbf0273585f..e26108aad3fe 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
@@ -200,7 +200,7 @@ int amdgpu_gfx_kiq_init_ring(struct amdgpu_device *adev,
return r;
ring->eop_gpu_addr = kiq->eop_gpu_addr;
- sprintf(ring->name, "kiq %d.%d.%d", ring->me, ring->pipe, ring->queue);
+ sprintf(ring->name, "kiq_%d.%d.%d", ring->me, ring->pipe, ring->queue);
r = amdgpu_ring_init(adev, ring, 1024,
irq, AMDGPU_CP_KIQ_IRQ_DRIVER0);
if (r)