diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2012-11-22 15:30:05 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-11-24 20:12:16 +0100 |
commit | 3c84261e84318708c9c16ee5df5c2549c609dd0a (patch) | |
tree | 456859520f8d37e2face7ba255fd2d2ab143d143 /src/mainboard/siemens | |
parent | 199b09cb7a3c590ccbf8d705c98cfde101378f20 (diff) | |
download | coreboot-3c84261e84318708c9c16ee5df5c2549c609dd0a.tar.gz coreboot-3c84261e84318708c9c16ee5df5c2549c609dd0a.tar.bz2 coreboot-3c84261e84318708c9c16ee5df5c2549c609dd0a.zip |
yabel: Use X86_* instead of the more verbose M.x86.REG_*
Makes it more similar to what realmode looks like.
Change-Id: I4407431f2d979c43dd186114d67ed11845907afe
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/1892
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/siemens')
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/mainboard.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mainboard/siemens/sitemp_g1p1/mainboard.c b/src/mainboard/siemens/sitemp_g1p1/mainboard.c index 565ea5660a8e..a73fbd6f6e4a 100644 --- a/src/mainboard/siemens/sitemp_g1p1/mainboard.c +++ b/src/mainboard/siemens/sitemp_g1p1/mainboard.c @@ -230,24 +230,24 @@ static int int15_handler(void) #define BOOT_DISPLAY_LCD2 (1 << 7) printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n", - __func__, M.x86.R_AX, M.x86.R_BX, M.x86.R_CX, M.x86.R_DX); + __func__, X86_AX, X86_BX, X86_CX, X86_DX); - switch (M.x86.R_AX) { + switch (X86_AX) { case 0x4e08: /* Boot Display */ - switch (M.x86.R_BX) { + switch (X86_BX) { case 0x80: - M.x86.R_AX &= ~(0xff); // Success - M.x86.R_BX &= ~(0xff); + X86_AX &= ~(0xff); // Success + X86_BX &= ~(0xff); printk(BIOS_DEBUG, "Integrated System Information\n"); break; case 0x00: - M.x86.R_AX &= ~(0xff); - M.x86.R_BX = 0x00; + X86_AX &= ~(0xff); + X86_BX = 0x00; printk(BIOS_DEBUG, "Panel ID = 0\n"); break; case 0x05: - M.x86.R_AX &= ~(0xff); - M.x86.R_BX = 0xff; + X86_AX &= ~(0xff); + X86_BX = 0xff; printk(BIOS_DEBUG, "TV = off\n"); break; default: @@ -255,13 +255,13 @@ static int int15_handler(void) } break; case 0x5f35: /* Boot Display */ - M.x86.R_AX = 0x005f; // Success - M.x86.R_CL = BOOT_DISPLAY_DEFAULT; + X86_AX = 0x005f; // Success + X86_CL = BOOT_DISPLAY_DEFAULT; break; case 0x5f40: /* Boot Panel Type */ // M.x86.R_AX = 0x015f; // Supported but failed - M.x86.R_AX = 0x005f; // Success - M.x86.R_CL = 3; // Display ID + X86_AX = 0x005f; // Success + X86_CL = 3; // Display ID break; default: /* Interrupt was not handled */ |