blob: 514fb7619fcf718cb9a2b0663d7f25d322b58527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef BUTTERFLY_EC_H
#define BUTTERFLY_EC_H
#define EC_SCI_GPI 13 /* GPIO13 is EC_SCI# */
/* EC SMI sources TODO: MLR- make defines */
#ifndef __ACPI__
extern void butterfly_ec_init(void);
#endif
#endif // BUTTERFLY_EC_H
|