diff options
author | Sven Schnelle <svens@stackframe.org> | 2012-06-20 16:59:15 +0200 |
---|---|---|
committer | Mathias Krause <minipli@googlemail.com> | 2012-06-20 20:24:29 +0200 |
commit | 14546853274bb21a760230ef5570d03bcb43430f (patch) | |
tree | 74f2a5cfd75f3dc3663dbdd57571cc2441e20455 /src/northbridge | |
parent | 43b9f32d20a41d108d936b776ddfec9d47ad364a (diff) |
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>
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | 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 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 |