From: Eric Anholt Date: Tue, 19 Aug 2003 02:22:57 +0000 (+0000) Subject: Fix the debug build. X-Git-Tag: submit/1.0/20121108.012404~2244 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=963ad33cb6b85189f3385bcba46905b6d4d329db;p=profile%2Fivi%2Flibdrm.git Fix the debug build. --- diff --git a/bsd-core/drm_bufs.c b/bsd-core/drm_bufs.c index 645698c..d718edd 100644 --- a/bsd-core/drm_bufs.c +++ b/bsd-core/drm_bufs.c @@ -546,7 +546,7 @@ static int DRM(addbufs_pci)(drm_device_t *dev, drm_buf_desc_t *request) for ( i = 0 ; i < (1 << page_order) ; i++ ) { DRM_DEBUG( "page %d @ 0x%08lx\n", dma->page_count + page_count, - page + PAGE_SIZE * i ); + (long)vaddr + PAGE_SIZE * i ); temp_pagelist[dma->page_count + page_count++] = vaddr + PAGE_SIZE * i; } diff --git a/bsd/drm_bufs.h b/bsd/drm_bufs.h index 645698c..d718edd 100644 --- a/bsd/drm_bufs.h +++ b/bsd/drm_bufs.h @@ -546,7 +546,7 @@ static int DRM(addbufs_pci)(drm_device_t *dev, drm_buf_desc_t *request) for ( i = 0 ; i < (1 << page_order) ; i++ ) { DRM_DEBUG( "page %d @ 0x%08lx\n", dma->page_count + page_count, - page + PAGE_SIZE * i ); + (long)vaddr + PAGE_SIZE * i ); temp_pagelist[dma->page_count + page_count++] = vaddr + PAGE_SIZE * i; }