drivers/pc80/rtc: Remove stub for sanitize_cmos()

We only have a single call-site for this.

Change-Id: I7ab19c6ea4ef01334f4d229c5636b64f99c86119
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38182
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Kyösti Mälkki 2020-01-04 13:00:02 +02:00
parent bb5b9fee8c
commit 731e58e319
2 changed files with 3 additions and 9 deletions

View File

@ -215,16 +215,9 @@ void cmos_post_log(void);
static inline void cmos_post_log(void) {} static inline void cmos_post_log(void) {}
#endif /* CONFIG_CMOS_POST */ #endif /* CONFIG_CMOS_POST */
#if CONFIG(USE_OPTION_TABLE)
void sanitize_cmos(void);
#else
static inline void sanitize_cmos(void) {}
#endif /* CONFIG_USE_OPTION_TABLE */
#else /* !CONFIG_ARCH_X86 */
static inline void sanitize_cmos(void) {}
#endif /* CONFIG_ARCH_X86 */ #endif /* CONFIG_ARCH_X86 */
void sanitize_cmos(void);
void cmos_post_init(void); void cmos_post_init(void);
#endif /* PC80_MC146818RTC_H */ #endif /* PC80_MC146818RTC_H */

View File

@ -56,7 +56,8 @@ static void bootblock_main_with_timestamp(uint64_t base_timestamp,
bootblock_soc_early_init(); bootblock_soc_early_init();
bootblock_mainboard_early_init(); bootblock_mainboard_early_init();
sanitize_cmos(); if (CONFIG(USE_OPTION_TABLE))
sanitize_cmos();
if (CONFIG(CMOS_POST)) if (CONFIG(CMOS_POST))
cmos_post_init(); cmos_post_init();