From 3daba08cfa461b712d4e1525645be8d905e74524 Mon Sep 17 00:00:00 2001 From: proski Date: Fri, 12 Jun 2009 06:12:38 +0000 Subject: [PATCH] Fix spacing --- commands/i386/pc/drivemap_int13h.S | 32 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/commands/i386/pc/drivemap_int13h.S b/commands/i386/pc/drivemap_int13h.S index 96848fb65..8d360e752 100644 --- a/commands/i386/pc/drivemap_int13h.S +++ b/commands/i386/pc/drivemap_int13h.S @@ -28,7 +28,7 @@ /* The replacement int13 handler. Preserve all registers. */ FUNCTION(grub_drivemap_handler) /* Save %dx for future restore. */ - push %dx + push %dx /* Push flags. Used to simulate interrupt with original flags. */ pushf @@ -56,9 +56,9 @@ not_found: pop %bx pop %ax - cmpb $0x8, %ah + cmpb $0x8, %ah jz norestore - cmpb $0x15, %ah + cmpb $0x15, %ah jz norestore /* Restore flags. */ @@ -66,20 +66,20 @@ not_found: pushf lcall *%cs:INT13H_OFFSET (EXT_C (grub_drivemap_oldhandler)) - - push %bp - mov %sp, %bp + + push %bp + mov %sp, %bp tail: - + pushf - pop %dx - mov %dx, 8(%bp) + pop %dx + mov %dx, 8(%bp) pop %bp - + /* Restore %dx. */ - pop %dx + pop %dx iret norestore: @@ -90,14 +90,14 @@ norestore: lcall *%cs:INT13H_OFFSET (EXT_C (grub_drivemap_oldhandler)) - push %bp - mov %sp, %bp - + push %bp + mov %sp, %bp + /* Save %dx. */ - mov %dx, 2(%bp) + mov %dx, 2(%bp) jmp tail - + /* Far pointer to the old handler. Stored as a CS:IP in the style of real-mode IVT entries (thus PI:SC in mem). */ VARIABLE(grub_drivemap_oldhandler)