]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
drm: sis fix compile warning
authorDave Airlie <airlied@linux.ie>
Tue, 28 Mar 2006 22:12:52 +0000 (08:12 +1000)
committerDave Airlie <airlied@linux.ie>
Tue, 28 Mar 2006 22:12:52 +0000 (08:12 +1000)
Prevent a gcc warning in the SIS DRM driver.  offset is a unsigned int and
the printk wants a long.

Signed-off-by: Jon Mason <jdmason@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/char/drm/sis_mm.c

index 6774d2fe3452c22931e6bc1e288c07329099e6f6..5e9936bc307fc21d7a321fae5e1ce2377182aee6 100644 (file)
@@ -110,7 +110,7 @@ static int sis_fb_alloc(DRM_IOCTL_ARGS)
 
        DRM_COPY_TO_USER_IOCTL(argp, fb, sizeof(fb));
 
-       DRM_DEBUG("alloc fb, size = %d, offset = %ld\n", fb.size, req.offset);
+       DRM_DEBUG("alloc fb, size = %d, offset = %d\n", fb.size, req.offset);
 
        return retval;
 }