Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hippi: fix printk format in rrunner.c

Fix printk format warning (from i386 build):

drivers/net/hippi/rrunner.c:146:9: warning: format '%08llx' expects type 'long long unsigned int', but argument 3 has type 'resource_size_t'

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Jes Sorensen <jes@trained-monkey.org>
Cc: linux-hippi@sunsite.dk
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Randy Dunlap and committed by
David S. Miller
ecffe75f 7335baed

+3 -2
+3 -2
drivers/net/hippi/rrunner.c
··· 142 142 pci_set_master(pdev); 143 143 144 144 printk(KERN_INFO "%s: Essential RoadRunner serial HIPPI " 145 - "at 0x%08llx, irq %i, PCI latency %i\n", dev->name, 146 - pci_resource_start(pdev, 0), pdev->irq, pci_latency); 145 + "at 0x%llx, irq %i, PCI latency %i\n", dev->name, 146 + (unsigned long long)pci_resource_start(pdev, 0), 147 + pdev->irq, pci_latency); 147 148 148 149 /* 149 150 * Remap the MMIO regs into kernel space.