bf06c0fc46
While working on psp_verstage, I noticed that this file had a number of unnecessary includes. Remove them. BUG=b:158124527 TEST=Build & boot psp_verstage on trembyle Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I32188e2dda39ece9dc98d0344824d997a2e80303 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42065 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
10 lines
252 B
C
10 lines
252 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <security/vboot/vbnv.h>
|
|
#include <pc80/mc146818rtc.h>
|
|
|
|
int vbnv_cmos_failed(void)
|
|
{
|
|
/* If CMOS power has failed, the century will be set to 0xff */
|
|
return cmos_read(RTC_CLK_ALTCENTURY) == 0xff;
|
|
}
|