Sven Schnelle (sv...@stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1119
-gerrit commit 1d0fd1106c1ec73d4d5d02d2ce2c88ed59ac5d87 Author: Sven Schnelle <sv...@stackframe.org> Date: Wed Jun 20 16:59:15 2012 +0200 i5000: fix another typo As Mathias Krause pointed out, using movw/outw on %al is clearly invalid. Let's do another typo fix... Change-Id: Ib95832a11097f599a236ab30c64c26ef429a1699 Signed-off-by: Sven Schnelle <sv...@stackframe.org> --- src/northbridge/intel/i5000/halt_second_bsp.S | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/northbridge/intel/i5000/halt_second_bsp.S b/src/northbridge/intel/i5000/halt_second_bsp.S index 30e6d89..041807e 100644 --- a/src/northbridge/intel/i5000/halt_second_bsp.S +++ b/src/northbridge/intel/i5000/halt_second_bsp.S @@ -14,8 +14,8 @@ /* perform hard reset */ movw $0xcf9, %dx - movw $0x06, %al - outw %al, %dx + movb $0x06, %al + outb %al, %dx loop0: hlt jmp loop0 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot