aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2009-03-27 13:01:11 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:43:42 -0400
commit8737f66e6415e8dbe8c8b26d63692d87a4ad5b29 (patch)
tree5e966fcd381516083410a0a8be15789ee3684e16 /drivers
parentcf47d878e5c7825836abf8d37fde025f7676db2b (diff)
V4L/DVB (11237): media/zoran: fix printk format
Fix printk format warning: drivers/media/video/zoran/zoran_driver.c:345: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'phys_addr_t' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/zoran/zoran_driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/zoran/zoran_driver.c b/drivers/media/video/zoran/zoran_driver.c
index 1e87fb9f7146..f16e57cf11e4 100644
--- a/drivers/media/video/zoran/zoran_driver.c
+++ b/drivers/media/video/zoran/zoran_driver.c
@@ -245,9 +245,9 @@ static int v4l_fbuffer_alloc(struct zoran_fh *fh)
245 SetPageReserved(virt_to_page(mem + off)); 245 SetPageReserved(virt_to_page(mem + off));
246 dprintk(4, 246 dprintk(4,
247 KERN_INFO 247 KERN_INFO
248 "%s: %s - V4L frame %d mem 0x%lx (bus: 0x%lx)\n", 248 "%s: %s - V4L frame %d mem 0x%lx (bus: 0x%llx)\n",
249 ZR_DEVNAME(zr), __func__, i, (unsigned long) mem, 249 ZR_DEVNAME(zr), __func__, i, (unsigned long) mem,
250 virt_to_bus(mem)); 250 (unsigned long long)virt_to_bus(mem));
251 } 251 }
252 252
253 fh->buffers.allocated = 1; 253 fh->buffers.allocated = 1;