blob: b444c7b23324f632415f4aad649d70f62b5649c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __LIPPERT_SEMA_H__
#define __LIPPERT_SEMA_H__
/* Signal SEMA watchdog a successful boot.
* Returns < 0 is SMBus message failed after
* several retries.
*/
int sema_send_alive(void);
#endif
|