Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/mm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9469/arch/vax/mm
Modified Files:
ioremap.c
Log Message:
- Change format argument to match the supplied argument. This silences
two gcc-4.1 warnings.
Index: ioremap.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/ioremap.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ioremap.c 25 Apr 2005 22:25:05 -0000 1.9
+++ ioremap.c 9 May 2005 20:07:45 -0000 1.10
@@ -117,7 +117,7 @@
__flush_tlb_one(virt_start + (i<<PAGE_SHIFT));
}
- printk("IO mapped phys addr 0x%08lx, 0x%04x pages at virt 0x%08lx (IOMAP PTE index 0x%04x)\n",
+ printk("IO mapped phys addr 0x%08lx, 0x%04x pages at virt 0x%08lx (IOMAP PTE index 0x%04lx)\n",
phys_start, num_ptes, (unsigned long) virt_start, start_pte - iomap_base);
return virt_start + offset;
@@ -152,7 +152,7 @@
iomap_sizes[p - iomap_base] = 0;
- printk("IO unmapping 0x%04x pages at PTE index 0x%04x\n",
+ printk("IO unmapping 0x%04x pages at PTE index 0x%04lx\n",
num_ptes, p - iomap_base);
while (num_ptes--) {
|