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 <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/1119
Tested-by: build bot (Jenkins)
Reviewed-by: Mathias Krause <minipli@googlemail.com>
This commit is contained in:
Sven Schnelle 2012-06-20 16:59:15 +02:00 committed by Mathias Krause
parent 43b9f32d20
commit 1454685327
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@
/* perform hard reset */ /* perform hard reset */
movw $0xcf9, %dx movw $0xcf9, %dx
movw $0x06, %al movb $0x06, %al
outw %al, %dx outb %al, %dx
loop0: hlt loop0: hlt
jmp loop0 jmp loop0