Sven Schnelle (svens@stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1119
-gerrit
commit 810f6d3b5fef690b4e50113114493cc1d0f6e768 Author: Sven Schnelle svens@stackframe.org Date: Wed Jun 20 16:59:15 2012 +0200
Fix another typo
As minipli pointed out, using movw/outw on %al is clearly invalid. Let's do another typo fix...
Change-Id: Ib95832a11097f599a236ab30c64c26ef429a1699 Signed-off-by: Sven Schnelle svens@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