Comments
Patch
===================================================================
@@ -47,11 +47,11 @@
printk(BIOS_ERR, "Error: Could not relocate GDT.\n");
return;
}
- printk_debug("Moving GDT to %#lx...", newgdt);
+ printk_debug("Moving GDT to %#lx...", (long unsigned int)newgdt);
I'd prefer just using %p since it's a pointer.
The pci_check_direct stuff needs to disappear, so it might be better to have
a warning there until it does, but I'm not picky about that either way.
With the %p:
Acked-by: Myles Watosn <mylesgw@gmail.com>