[PATCH] sis: Fix compile warning (trivial)

From: Jon Mason
Date: Mon Mar 13 2006 - 20:06:41 EST


Trivial patch to prevent a gcc warning in the SIS DRM driver. offset is
a unsigned int and the printk wants a long.

Thanks,
Jon

Signed-off-by: Jon Mason <jdmason@xxxxxxxxxx>

diff -r 96b636489b54 drivers/char/drm/sis_mm.c
--- a/drivers/char/drm/sis_mm.c Sat Mar 11 18:29:09 2006
+++ b/drivers/char/drm/sis_mm.c Sun Mar 12 11:03:57 2006
@@ -110,7 +110,7 @@

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;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/