more ifdef -> if fixes
[coreboot.git] / src / console / post.c
index 49f6311303a8170e976b1abd64ab8d3bd56d84d1..3872c2d4fefa2b2778dd9b886abf0d4d8c515010 100644 (file)
@@ -26,8 +26,8 @@
 
 void post_code(uint8_t value)
 {
-#if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0
-#if CONFIG_CONSOLE_POST==1
+#if !CONFIG_NO_POST
+#if CONFIG_CONSOLE_POST
        print_emerg("POST: 0x");
        print_emerg_hex8(value);
        print_emerg("\n");