From 760bce07f182f678d42f2a85a0e47b59e831ba25 Mon Sep 17 00:00:00 2001 From: Anatolij Gustschin Date: Thu, 8 Apr 2010 15:50:55 +0200 Subject: video: ati_radeon_fb.c: fix warning while compiling with DEBUG Fixes this warning: ati_radeon_fb.c: In function 'radeon_probe': ati_radeon_fb.c:598: warning: format '%x' expects type 'unsigned int', but argument 2 has type 'void *' Signed-off-by: Anatolij Gustschin --- drivers/video/ati_radeon_fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/ati_radeon_fb.c b/drivers/video/ati_radeon_fb.c index f797104282..4a9bd07e01 100644 --- a/drivers/video/ati_radeon_fb.c +++ b/drivers/video/ati_radeon_fb.c @@ -594,7 +594,7 @@ int radeon_probe(struct radeonfb_info *rinfo) rinfo->mmio_base = pci_bus_to_virt(pdev, rinfo->mmio_base_bus, PCI_REGION_MEM, 0, MAP_NOCACHE); - DPRINT("rinfo->mmio_base = 0x%x bus=0x%x\n", + DPRINT("rinfo->mmio_base = 0x%p bus=0x%x\n", rinfo->mmio_base, rinfo->mmio_base_bus); rinfo->fb_local_base = INREG(MC_FB_LOCATION) << 16; DPRINT("rinfo->fb_local_base = 0x%x\n",rinfo->fb_local_base); -- cgit v1.2.3