diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-21 13:30:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-21 13:30:18 -0400 |
commit | 7913f9df87c16b8a4f0b78530ba4f1249ada772d (patch) | |
tree | b40bb343ed5d3ff8cfa771166748543390d36b46 | |
parent | 7958de33034ab22490ed14f6766324fb1cb5399c (diff) | |
download | seabios-7913f9df87c16b8a4f0b78530ba4f1249ada772d.tar.gz |
Minor change - use set_success() instead of set_cf in pcibios.c.
Using set_success permits easier debug hooks in the future.
-rw-r--r-- | src/pcibios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcibios.c b/src/pcibios.c index 29a0ec5b..44a6369e 100644 --- a/src/pcibios.c +++ b/src/pcibios.c @@ -139,7 +139,7 @@ handle_1ab101(struct bregs *regs) regs->edx = 0x20494350; // "PCI " // XXX - bochs bios code sets edi to point to 32bit code - but no // reference to this in spec. - set_cf(regs, 0); + set_success(regs); } // find pci device |