blob: ae472c9f95af3c9fd129b6e94eb565b345f52371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef SOUTHBRIDGE_INTEL_RTC_H
#define SOUTHBRIDGE_INTEL_RTC_H
/* Return non-zero when RTC failure happened. */
int rtc_failure(void);
void sb_rtc_init(void);
#endif
|