blob: b0f7febc2e3037c0e41d4a78352b6765c0c87092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef EC_EC_H
#define EC_EC_H
#ifndef __ACPI__
/* Entry point doing any mainboard specific EC initialization. */
void mainboard_ec_init(void);
#endif
#endif
|