Fix CMOS handling for non-USE_OPTION_TABLE configuration
authorPatrick Georgi <patrick.georgi@secunet.com>
Tue, 22 Nov 2011 09:27:24 +0000 (10:27 +0100)
committerPatrick Georgi <patrick@georgi-clan.de>
Tue, 13 Dec 2011 22:20:49 +0000 (23:20 +0100)
The read_option macro still emitted CMOS_VSTART_*/CMOS_VEND_* symbols,
which fail without an option table (as no option_table.h defines them).

Discard them by using a macro instead of a static inline function.

Change-Id: I8d001f971681277a344b6788725746491546b607
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/442
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
src/include/pc80/mc146818rtc.h

index d6dcf01b77cd767392b687fe326d3d374284c144..3e5a61a7067aacf7f7619011b2362ec87b27fcaf 100644 (file)
@@ -116,8 +116,7 @@ unsigned read_option_lowlevel(unsigned start, unsigned size, unsigned def);
 static inline int set_option(const char *name __attribute__((unused)), void *val __attribute__((unused))) { return -2; };
 static inline int get_option(void *dest __attribute__((unused)),
        const char *name __attribute__((unused))) { return -2; }
-static inline unsigned read_option_lowlevel(unsigned start, unsigned size, unsigned def)
-       { return def; }
+#define read_option_lowlevel(start, size, def) def
 #endif
 #else
 #include <pc80/mc146818rtc_early.c>