diff options
author | Rik Faith <faith@alephnull.com> | 2000-08-04 10:04:55 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-08-04 10:04:55 +0000 |
commit | f3ae6786f89a4f63dbba93c5519d3792a1744dd7 (patch) | |
tree | 0d9ef964855fc32189fd5553373bb9dcf904ed12 /linux/proc.c | |
parent | bcad11818296fa58a356175bc7e13060579012d0 (diff) |
Sync with Linux 2.4.0-test6-pre2
Diffstat (limited to 'linux/proc.c')
-rw-r--r-- | linux/proc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/proc.c b/linux/proc.c index 24dfe5f3..ca062a09 100644 --- a/linux/proc.c +++ b/linux/proc.c @@ -521,9 +521,9 @@ static int _drm_histo_info(char *buf, char **start, off_t offset, int len, } else { DRM_PROC_PRINT("lock none\n"); } - DRM_PROC_PRINT("context_flag 0x%08x\n", dev->context_flag); - DRM_PROC_PRINT("interrupt_flag 0x%08x\n", dev->interrupt_flag); - DRM_PROC_PRINT("dma_flag 0x%08x\n", dev->dma_flag); + DRM_PROC_PRINT("context_flag 0x%08lx\n", dev->context_flag); + DRM_PROC_PRINT("interrupt_flag 0x%08lx\n", dev->interrupt_flag); + DRM_PROC_PRINT("dma_flag 0x%08lx\n", dev->dma_flag); DRM_PROC_PRINT("queue_count %10d\n", dev->queue_count); DRM_PROC_PRINT("last_context %10d\n", dev->last_context); |