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:
parent
43b9f32d20
commit
1454685327
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue