diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2013-02-08 09:38:49 +0100 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2013-02-08 10:00:12 +0100 |
commit | 882f7e35ea1dc2f6be4ba6c2529ed59915863e81 (patch) | |
tree | 14d6bb38a6ac334ba680323f7facbac456995202 /src/console | |
parent | 69e432eedd72516343cbafd73bed5b10915de0bf (diff) |
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 <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/2323
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
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 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 <pc80/mc146818rtc.h> #else static inline int get_option(void *dest, const char *name) { return -1; } |