summaryrefslogtreecommitdiff
path: root/linux/drm_ioctl.h
diff options
context:
space:
mode:
authorLeif Delgass <ldelgass@users.sourceforge.net>2003-04-24 16:55:22 +0000
committerLeif Delgass <ldelgass@users.sourceforge.net>2003-04-24 16:55:22 +0000
commitd6a82ff9c160acbb7db5bee2cde45818d1e8548e (patch)
treecf97393d3dd3ef83ff8914d32dd79d7be7b8037a /linux/drm_ioctl.h
parent2dc672a7908817f43391703a8341cb873fbb1543 (diff)
Remove unused dev->map_count. We always iterate the maplist with
list_for_each() and the count is not updated or used for stats.
Diffstat (limited to 'linux/drm_ioctl.h')
-rw-r--r--linux/drm_ioctl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drm_ioctl.h b/linux/drm_ioctl.h
index 9b1069a1..62d5a6e4 100644
--- a/linux/drm_ioctl.h
+++ b/linux/drm_ioctl.h
@@ -197,7 +197,7 @@ int DRM(getmap)( struct inode *inode, struct file *filp,
idx = map.offset;
down(&dev->struct_sem);
- if (idx < 0 || idx >= dev->map_count) {
+ if (idx < 0) {
up(&dev->struct_sem);
return -EINVAL;
}