diff options
author | Thomas Friebel <thomas.friebel@amd.com> | 2012-10-15 13:16:22 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2012-10-15 13:21:02 -0400 |
commit | 8ad33cdf97639e2a1601b6dd8629d351c1c50198 (patch) | |
tree | 42b4f376ee7e2f6d733f121cc2707db9952d827d | |
parent | 082918471139b07964967cfe5f70230909c82ae1 (diff) | |
download | op-kernel-dev-8ad33cdf97639e2a1601b6dd8629d351c1c50198.zip op-kernel-dev-8ad33cdf97639e2a1601b6dd8629d351c1c50198.tar.gz |
drm/radeon: fix spelling typos in debugging output
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_ring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_ring.c b/drivers/gpu/drm/radeon/radeon_ring.c index bba6690..47634f2 100644 --- a/drivers/gpu/drm/radeon/radeon_ring.c +++ b/drivers/gpu/drm/radeon/radeon_ring.c @@ -305,7 +305,7 @@ void radeon_ring_write(struct radeon_ring *ring, uint32_t v) { #if DRM_DEBUG_CODE if (ring->count_dw <= 0) { - DRM_ERROR("radeon: writting more dword to ring than expected !\n"); + DRM_ERROR("radeon: writing more dwords to the ring than expected!\n"); } #endif ring->ring[ring->wptr++] = v; |