diff options
author | Sven Schnelle <svens@stackframe.org> | 2012-06-20 15:36:53 +0200 |
---|---|---|
committer | Sven Schnelle <svens@stackframe.org> | 2012-06-20 16:37:18 +0200 |
commit | 39b47d2b03c714ee49b96ba65e5d67ece5c33b7a (patch) | |
tree | 5f786726ea8f2c8c7999e47b969d2bc44f050357 /src | |
parent | 69eab16ce619c865988b892b857805598ca1779f (diff) | |
download | coreboot-39b47d2b03c714ee49b96ba65e5d67ece5c33b7a.tar.xz |
i5000: fix typos
Peter and Ron pointed out two typos. They have no side effects, but
it's still worth to fix them.
Change-Id: I9aecccdbc72beb2623fbe558a06e4f1b050f6e74
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/1117
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/intel/i5000/halt_second_bsp.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/intel/i5000/halt_second_bsp.S b/src/northbridge/intel/i5000/halt_second_bsp.S index 2dc533ac53..30e6d89f56 100644 --- a/src/northbridge/intel/i5000/halt_second_bsp.S +++ b/src/northbridge/intel/i5000/halt_second_bsp.S @@ -14,11 +14,11 @@ /* perform hard reset */ movw $0xcf9, %dx - movw $0x06, %ax - outw %ax, %dx + movw $0x06, %al + outw %al, %dx loop0: hlt - jmp loop + jmp loop0 no_reset: |