Commit 8737f66e authored by Randy Dunlap's avatar Randy Dunlap Committed by Mauro Carvalho Chehab

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: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent cf47d878
...@@ -245,9 +245,9 @@ static int v4l_fbuffer_alloc(struct zoran_fh *fh) ...@@ -245,9 +245,9 @@ static int v4l_fbuffer_alloc(struct zoran_fh *fh)
SetPageReserved(virt_to_page(mem + off)); SetPageReserved(virt_to_page(mem + off));
dprintk(4, dprintk(4,
KERN_INFO KERN_INFO
"%s: %s - V4L frame %d mem 0x%lx (bus: 0x%lx)\n", "%s: %s - V4L frame %d mem 0x%lx (bus: 0x%llx)\n",
ZR_DEVNAME(zr), __func__, i, (unsigned long) mem, ZR_DEVNAME(zr), __func__, i, (unsigned long) mem,
virt_to_bus(mem)); (unsigned long long)virt_to_bus(mem));
} }
fh->buffers.allocated = 1; fh->buffers.allocated = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment