From 14546853274bb21a760230ef5570d03bcb43430f Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Wed, 20 Jun 2012 16:59:15 +0200 Subject: 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 Reviewed-on: http://review.coreboot.org/1119 Tested-by: build bot (Jenkins) Reviewed-by: Mathias Krause --- src/northbridge/intel/i5000/halt_second_bsp.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/northbridge/intel/i5000/halt_second_bsp.S b/src/northbridge/intel/i5000/halt_second_bsp.S index 30e6d89f56..041807ecc7 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 -- cgit v1.2.3