From: Andy Isaacson In 2.6.17-mm1, the patch gregkh-pci-64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code.patch has some formatting bugs. * converts %08x into %16llx, which results in space-padding rather than zero-padding. * some casts are insufficiently touchy-feely with their castees. This patch fixes them. Signed-off-by: Andy Isaacson Signed-off-by: Andrew Morton --- kernel/resource.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/resource.c~64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code-fix kernel/resource.c --- a/kernel/resource.c~64bit-resource-fix-up-printks-for-resources-in-arch-and-core-code-fix +++ a/kernel/resource.c @@ -556,8 +556,8 @@ void __release_region(struct resource *p write_unlock(&resource_lock); printk(KERN_WARNING "Trying to free nonexistent resource " - "<%16llx-%16llx>\n", (unsigned long long)start, - (unsigned long long) end); + "<%016llx-%016llx>\n", (unsigned long long)start, + (unsigned long long)end); } EXPORT_SYMBOL(__release_region); _