diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-06-07 08:29:36 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-06-07 08:29:36 +0000 |
commit | aed992054f3af248e12ec88de4c047456fe9b104 (patch) | |
tree | f942db029eaba8e209094e75dbdd4c58e0258485 /src/cpu/via/car | |
parent | c4f1a77cd238b106e84d15a4b62e1ffe169e6200 (diff) |
replace outb -> port 0x80 with post_code() in some places.
Especially most _smbus functions misuse port 0x80 writes for delays.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5615 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/via/car')
-rw-r--r-- | src/cpu/via/car/cache_as_ram.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/via/car/cache_as_ram.inc b/src/cpu/via/car/cache_as_ram.inc index 8bc274b381..eaa4ac9973 100644 --- a/src/cpu/via/car/cache_as_ram.inc +++ b/src/cpu/via/car/cache_as_ram.inc @@ -152,8 +152,8 @@ clear_fixed_var_mtrr_out: movl %eax, %esp #ifdef CARTEST -testok: movb $0x40,%al - outb %al, $0x80 +testok: + post_code(0x40) xorl %edx, %edx xorl %eax, %eax movl $0x5c5c,%edx |