drm: fix _DRM_GEM addmap error message
authorPekka Paalanen <pq@iki.fi>
Thu, 17 Sep 2009 19:59:54 +0000 (22:59 +0300)
committerDave Airlie <airlied@redhat.com>
Fri, 18 Sep 2009 04:34:06 +0000 (14:34 +1000)
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>
drivers/gpu/drm/drm_bufs.c

index 6246e3f..3d09e30 100644 (file)
@@ -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);