aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorPekka Paalanen <pq@iki.fi>2009-09-17 22:59:54 +0300
committerDave Airlie <airlied@redhat.com>2009-09-18 14:34:06 +1000
commit812c369dbf3b5a726b52bbfb8adbc230f3f81bcf (patch)
tree0a7d17dfcbda2bf55f296212311eab8e3c0a80ab /drivers/gpu
parentdrm: update crtc x/y when only fb changes (diff)
downloadlinux-dev-812c369dbf3b5a726b52bbfb8adbc230f3f81bcf.tar.xz
linux-dev-812c369dbf3b5a726b52bbfb8adbc230f3f81bcf.zip
drm: fix _DRM_GEM addmap error message
Fix the error message: this is add, not rm. Move the closing brace to proper spot: _DRM_GEM branch should not be included in the block. Signed-off-by: Pekka Paalanen <pq@iki.fi> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/drm_bufs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_bufs.c b/drivers/gpu/drm/drm_bufs.c
index 6246e3f3dad7..3d09e304f6f4 100644
--- a/drivers/gpu/drm/drm_bufs.c
+++ b/drivers/gpu/drm/drm_bufs.c
@@ -310,10 +310,10 @@ static int drm_addmap_core(struct drm_device * dev, resource_size_t offset,
(unsigned long long)map->offset, map->size);
break;
+ }
case _DRM_GEM:
- DRM_ERROR("tried to rmmap GEM object\n");
+ DRM_ERROR("tried to addmap GEM object\n");
break;
- }
case _DRM_SCATTER_GATHER:
if (!dev->sg) {
kfree(map);