[syslinux:master] memdisk/dskprobe: reorder the debug output in probe_int13h_41h to match

syslinux-bot for Gene Cumm gene.cumm at gmail.com
Fri Apr 1 15:54:40 PDT 2011


Commit-ID:  a350261fee70a1f06862e04339be3f7fe9963960
Gitweb:     http://syslinux.zytor.com/commit/a350261fee70a1f06862e04339be3f7fe9963960
Author:     Gene Cumm <gene.cumm at gmail.com>
AuthorDate: Wed, 26 Jan 2011 22:08:18 -0500
Committer:  Gene Cumm <gene.cumm at gmail.com>
CommitDate: Wed, 26 Jan 2011 22:08:18 -0500

memdisk/dskprobe: reorder the debug output in probe_int13h_41h to match

BX was listed before AH


---
 memdisk/dskprobe.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/memdisk/dskprobe.c b/memdisk/dskprobe.c
index c2a85e8..ca59fe5 100644
--- a/memdisk/dskprobe.c
+++ b/memdisk/dskprobe.c
@@ -130,8 +130,8 @@ static int probe_int13h_41h(uint8_t drive, com32sys_t * regs)
     memset(regs, 0, sizeof *regs);
     regs->ebx.w[0] = 0x55AA;	/* BX == 0x55AA */
     probe_any(0x41, drive, regs);
-    dskprobe_printf("  AH41: CF%d BX%04x AH%02x DH%02x",
-		    regs->eflags.l & 1, regs->ebx.w[0], regs->eax.b[1],
+    dskprobe_printf("  AH41: CF%d AH%02x BX%04x DH%02x",
+		    regs->eflags.l & 1, regs->eax.b[1], regs->ebx.w[0],
 		    regs->edx.b[1]);
     present = !(regs->eflags.l & 1) && (regs->ebx.w[0] == 0xAA55);
     status = probe_int13h_01h(drive);



More information about the Syslinux-commits mailing list