Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 995a6528 authored by Randy Dunlap's avatar Randy Dunlap Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10631): 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 7d979a86
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -344,9 +344,9 @@ v4l_fbuffer_alloc (struct file *file)
				SetPageReserved(MAP_NR(mem + off));
				SetPageReserved(MAP_NR(mem + off));
			dprintk(4,
			dprintk(4,
				KERN_INFO
				KERN_INFO
				"%s: v4l_fbuffer_alloc() - V4L frame %d mem 0x%lx (bus: 0x%lx)\n",
				"%s: v4l_fbuffer_alloc() - V4L frame %d mem 0x%lx (bus: 0x%llx)\n",
				ZR_DEVNAME(zr), i, (unsigned long) mem,
				ZR_DEVNAME(zr), i, (unsigned long) mem,
				virt_to_bus(mem));
				(unsigned long long)virt_to_bus(mem));
		} else {
		} else {


			/* Use high memory which has been left at boot time */
			/* Use high memory which has been left at boot time */