aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu.h
diff options
context:
space:
mode:
authorJammy Zhou <[email protected]>2015-05-13 14:52:42 +0000
committerAlex Deucher <[email protected]>2015-06-04 01:03:36 +0000
commit86c2b79062be6a328014d90d1e4ef6a0afae02ad (patch)
treea0cf5fad9c33ce8ef426843997b9cf7a77974f62 /drivers/gpu/drm/amd/amdgpu/amdgpu.h
parentdrm/amdgpu: switch to amdgpu folder for firmware files v2 (diff)
downloadkernel-86c2b79062be6a328014d90d1e4ef6a0afae02ad.tar.gz
kernel-86c2b79062be6a328014d90d1e4ef6a0afae02ad.zip
drm/amdgpu: rewording some left radeons
Signed-off-by: Jammy Zhou <[email protected]> Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
index 003fa2d12bfb..66b5bd058799 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
@@ -2164,7 +2164,7 @@ static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
{
if (ring->count_dw <= 0)
- DRM_ERROR("radeon: writing more dwords to the ring than expected!\n");
+ DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
ring->ring[ring->wptr++] = v;
ring->wptr &= ring->ptr_mask;
ring->count_dw--;