diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-30 03:05:20 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-30 03:05:20 +0000 |
commit | 57ffeb0578db71b1c57d9e4137def42aac34fe18 (patch) | |
tree | c130080b5a000b31b04639535d22274b256f6b65 /src/console | |
parent | b265254e1c50af2e3b84c0628016dda4ccf253d7 (diff) | |
download | coreboot-57ffeb0578db71b1c57d9e4137def42aac34fe18.tar.xz |
updates from YhLu, plus fixes for PPC/K8 issues.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1059 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/console.c b/src/console/console.c index 0f6fb07406..5ec936d8ab 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -57,7 +57,7 @@ void console_tx_byte(unsigned char byte) */ void post_code(uint8_t value) { -#ifdef CONFIG_SERIAL_POST +#if CONFIG_SERIAL_POST==1 printk_info("POST: 0x%02x\n", value); #elsif !define(NO_POST) outb(value, 0x80); |