The patch number 11237 was added via Mauro Carvalho Chehab <[email protected]>
to http://linuxtv.org/hg/v4l-dvb master development tree.

Kernel patches in this development tree may be modified to be backward
compatible with older kernels. Compatibility modifications will be
removed before inclusion into the mainstream Kernel

If anyone has any objections, please let us know by sending a message to:
        Linux Media Mailing List <[email protected]>

------

From: Randy Dunlap  <[email protected]>
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 <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>


---

 linux/drivers/media/video/zoran/zoran_driver.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -r 5efa9fbc8a88 -r 8729f1ca67f6 
linux/drivers/media/video/zoran/zoran_driver.c
--- a/linux/drivers/media/video/zoran/zoran_driver.c    Wed Mar 25 20:53:02 
2009 +0000
+++ b/linux/drivers/media/video/zoran/zoran_driver.c    Fri Mar 27 14:01:11 
2009 -0300
@@ -246,9 +246,9 @@ static int v4l_fbuffer_alloc(struct zora
                        SetPageReserved(virt_to_page(mem + off));
                dprintk(4,
                        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,
-                       virt_to_bus(mem));
+                       (unsigned long long)virt_to_bus(mem));
        }
 
        fh->buffers.allocated = 1;


---

Patch is available at: 
http://linuxtv.org/hg/v4l-dvb/rev/8729f1ca67f6d73fbeedb42b89bed38d305c203e

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to