diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-06-24 16:29:12 +1000 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-06-25 11:43:09 +0200 |
commit | c5fff75f681ca6307d180399cdfb6697fb2cbcf6 (patch) | |
tree | 4f4ded74c2cb1febe807f97610cc7cba8832e395 /src/include/pc80 | |
parent | 743a218a6098fc2433c844214651d0c3624d08ad (diff) | |
download | coreboot-c5fff75f681ca6307d180399cdfb6697fb2cbcf6.tar.xz |
pc80/mc146818rtc.h: Has X86 specific inlines without guards
PC80 header components are winding up in ARM builds with static inline
X86 specific code.
Change-Id: Ib23e70a34c478dc099b84b59a5234539cc2482e3
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/6101
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <gaumless@gmail.com>
Diffstat (limited to 'src/include/pc80')
-rw-r--r-- | src/include/pc80/i8254.h | 3 | ||||
-rw-r--r-- | src/include/pc80/mc146818rtc.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/pc80/i8254.h b/src/include/pc80/i8254.h index f4f0dcaab0..964cc974d9 100644 --- a/src/include/pc80/i8254.h +++ b/src/include/pc80/i8254.h @@ -59,4 +59,5 @@ #define PPCB_T2GATE 0x01 /* Bit 0 */ void setup_i8254(void); -#endif + +#endif /* PC80_I8254_H */ diff --git a/src/include/pc80/mc146818rtc.h b/src/include/pc80/mc146818rtc.h index 46dbd736db..56f8cafe90 100644 --- a/src/include/pc80/mc146818rtc.h +++ b/src/include/pc80/mc146818rtc.h @@ -1,6 +1,8 @@ #ifndef PC80_MC146818RTC_H #define PC80_MC146818RTC_H +#if CONFIG_ARCH_X86 + #include <arch/io.h> #include <types.h> @@ -224,4 +226,6 @@ void cmos_post_log(void); static inline void cmos_post_log(void) {} #endif /* CONFIG_CMOS_POST */ +#endif /* CONFIG_ARCH_X86 */ + #endif /* PC80_MC146818RTC_H */ |