summaryrefslogtreecommitdiffstats
path: root/src/include/pc80/mc146818rtc.h
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2015-07-11 13:56:58 -0600
committerMartin Roth <gaumless@gmail.com>2015-07-12 19:06:44 +0200
commit46cf9f7b7a20a94a2eb9bdfb4b8fba2a8c889474 (patch)
tree79f35f10284df4b0d26f994dbfdd7056ad1e6b94 /src/include/pc80/mc146818rtc.h
parentba566bdc8b451a9b6906359c2cea2df1eaebe8ee (diff)
downloadcoreboot-46cf9f7b7a20a94a2eb9bdfb4b8fba2a8c889474.tar.gz
coreboot-46cf9f7b7a20a94a2eb9bdfb4b8fba2a8c889474.tar.bz2
coreboot-46cf9f7b7a20a94a2eb9bdfb4b8fba2a8c889474.zip
Verify Kconfigs symbols are not zero for hex and int type symbols
For hex and int type kconfig symbols, IS_ENABLED() doesn't work. Instead check to make sure they're defined and not zero. In some cases, zero might be a valid value, but it didn't look like zero was valid in these cases. Change-Id: Ib51fb31b3babffbf25ed3ae4ed11a2dc9a4be709 Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: http://review.coreboot.org/10886 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/include/pc80/mc146818rtc.h')
-rw-r--r--src/include/pc80/mc146818rtc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pc80/mc146818rtc.h b/src/include/pc80/mc146818rtc.h
index c74af66d8135..0e15273fc4b1 100644
--- a/src/include/pc80/mc146818rtc.h
+++ b/src/include/pc80/mc146818rtc.h
@@ -186,10 +186,10 @@ unsigned read_option_lowlevel(unsigned start, unsigned size, unsigned def);
# include "option_table.h"
# define CMOS_POST_OFFSET (CMOS_VSTART_cmos_post_offset >> 3)
#else
-# if defined(CONFIG_CMOS_POST_OFFSET)
+# if defined(CONFIG_CMOS_POST_OFFSET) && CONFIG_CMOS_POST_OFFSET
# define CMOS_POST_OFFSET CONFIG_CMOS_POST_OFFSET
# else
-# error "Must define CONFIG_CMOS_POST_OFFSET"
+# error "Must configure CONFIG_CMOS_POST_OFFSET"
# endif
#endif