diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-22 18:15:32 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-22 18:15:32 +0000 |
commit | f75b19ac85ccfffba5eca37700d4c705b24a355e (patch) | |
tree | 4e1c0a547389cdc1ec5ba57f89f252a3dc7010de /src/devices | |
parent | 64d3baf9829baf9285c94cae0406ee0f428c04c0 (diff) |
via epia-m now works with default x86.c instead of its own copy of vgabios.c.
Allows to drop quite a bunch of nasty code
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5478 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/oprom/x86.c | 2 | ||||
-rw-r--r-- | src/devices/oprom/x86_asm.S | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/oprom/x86.c b/src/devices/oprom/x86.c index 4ed0ff8709..7df46283a9 100644 --- a/src/devices/oprom/x86.c +++ b/src/devices/oprom/x86.c @@ -318,7 +318,7 @@ int __attribute__((regparm(0))) interrupt_handler(u32 intnumber, /* Pass errors back to our caller via the CARRY flag */ if (ret) { - printk(BIOS_DEBUG,"error!\n"); + printk(BIOS_DEBUG,"int%02x call returned error.\n", intnumber); flags |= 1; // error: set carry }else{ flags &= ~1; // no error: clear carry diff --git a/src/devices/oprom/x86_asm.S b/src/devices/oprom/x86_asm.S index 194b4cb64c..03c6994046 100644 --- a/src/devices/oprom/x86_asm.S +++ b/src/devices/oprom/x86_asm.S @@ -257,8 +257,6 @@ __run_vsa = RELOCATED(.) .globl __run_interrupt __run_interrupt = RELOCATED(.) - /* paranoia -- does ecx get saved? not sure. This is - * the easiest safe thing to do. */ pushal /* save the stack */ mov %esp, __stack |