From 882f7e35ea1dc2f6be4ba6c2529ed59915863e81 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 8 Feb 2013 09:38:49 +0100 Subject: console: Fix using CMOS for options Just a tiny mistake, but it made the console driver assume that CMOS data isn't available. Change-Id: I4e6f53e9ed59024de7b09333f82f0ce3235ef8f6 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/2323 Reviewed-by: Christian Gmeiner Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge --- src/console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/console/console.c b/src/console/console.c index aec711b5f8..34a26ecb51 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -30,7 +30,7 @@ * storage can be used. This will benefit machines without CMOS as well as those * without a battery-backed CMOS (e.g. some laptops). */ -#ifdef HAVE_CMOS_DEFAULT +#if CONFIG_HAVE_CMOS_DEFAULT #include #else static inline int get_option(void *dest, const char *name) { return -1; } -- cgit v1.2.3