On 3/18/10 3:42 AM, Peter Stuge wrote:
repository service wrote:
printk_debug("biosint: ip 0x%x cs 0x%x flags 0x%x\n",
ip, cs, flags);
(u32)ip, (u32)cs, (u32)flags);
Aren't ip and cs just 16? flags is 32 though.
They're all unsigned long in vsmsetup.c, so that's what theoretically can be passed to the function. I think the right way would be to fix the function. The even better way would be to use devices/oprom/x86.c instead. Patches welcome