blob: 87b20ab2821d6d70cbda3fea3430e516b334cd59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#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
|