This change fixes a long-standing bug, whereby we do not set ret for an
un-inited vector, which we should have done. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2479 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
cf20187079
commit
f044ede246
|
@ -122,6 +122,7 @@ void do_int(int num)
|
|||
case 0x6D:
|
||||
if (getIntVect(num) == 0x0000) {
|
||||
printk_debug("un-inited int vector\n");
|
||||
ret = 1;
|
||||
}
|
||||
if (getIntVect(num) == 0xFF065) {
|
||||
//ret = int42_handler();
|
||||
|
|
Loading…
Reference in New Issue