[coreboot] New patch to review for coreboot: 86d76da Fix another typo

Sven Schnelle (svens@stackframe.org) gerrit at coreboot.org
Wed Jun 20 17:01:20 CEST 2012


Sven Schnelle (svens at stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1119

-gerrit

commit 86d76da2e746a58878529452e783482192fbb18c
Author: Sven Schnelle <svens at stackframe.org>
Date:   Wed Jun 20 16:59:15 2012 +0200

    Fix another typo
    
    As minipli pointed out, movw %al, %dx is clearly invalid. Let's do
    another typo fix...
    
    Change-Id: Ib95832a11097f599a236ab30c64c26ef429a1699
    Signed-off-by: Sven Schnelle <svens at stackframe.org>
---
 src/northbridge/intel/i5000/halt_second_bsp.S |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/northbridge/intel/i5000/halt_second_bsp.S b/src/northbridge/intel/i5000/halt_second_bsp.S
index 30e6d89..eb3d295 100644
--- a/src/northbridge/intel/i5000/halt_second_bsp.S
+++ b/src/northbridge/intel/i5000/halt_second_bsp.S
@@ -15,7 +15,7 @@
 	/* perform hard reset */
 	movw	$0xcf9, %dx
 	movw	$0x06, %al
-	outw	%al, %dx
+	outb	%al, %dx
 
 loop0:	hlt
 	jmp	loop0




More information about the coreboot mailing list