aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/drm/drm_proc.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@optimus.(none)>2007-11-04 21:37:41 -0500
committerDave Airlie <airlied@redhat.com>2008-02-07 00:09:38 -0500
commit8562b3f25d6e23c9d9e48a32672944d1e8a2aa97 (patch)
treef1fdadd4a7f40c9bf2b67e2c8307c4fba1a06d6e /drivers/char/drm/drm_proc.c
parent488b5ec871191359b9b79262a3d48456dae7ea5f (diff)
drm: some minor cleanups and changes to make memory manager merging easier.
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/drm_proc.c')
-rw-r--r--drivers/char/drm/drm_proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/drm/drm_proc.c b/drivers/char/drm/drm_proc.c
index 12dfea89c7f3..d9b560fe9bbe 100644
--- a/drivers/char/drm/drm_proc.c
+++ b/drivers/char/drm/drm_proc.c
@@ -236,11 +236,11 @@ static int drm__vm_info(char *buf, char **start, off_t offset, int request,
236 type = "??"; 236 type = "??";
237 else 237 else
238 type = types[map->type]; 238 type = types[map->type];
239 DRM_PROC_PRINT("%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08x ", 239 DRM_PROC_PRINT("%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08lx ",
240 i, 240 i,
241 map->offset, 241 map->offset,
242 map->size, type, map->flags, 242 map->size, type, map->flags,
243 r_list->user_token); 243 (unsigned long) r_list->user_token);
244 if (map->mtrr < 0) { 244 if (map->mtrr < 0) {
245 DRM_PROC_PRINT("none\n"); 245 DRM_PROC_PRINT("none\n");
246 } else { 246 } else {