Done with sed and God Lines. Only done for C-like code for now. Change-Id: Ic3314eb6137a6fc9fa1f90685f37223ca1580cb9 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40197 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
18 lines
366 B
C
18 lines
366 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#ifndef STOUT_EC_H
|
|
#define STOUT_EC_H
|
|
|
|
#define EC_SCI_GPI 6 /* GPIO6 is EC_SCI# */
|
|
#define EC_SMI_GPI 1 /* GPIO1 is EC_SMI# */
|
|
|
|
#define EC_SMI_LID_CLOSED 0x2B
|
|
|
|
#ifndef __ACPI__
|
|
void stout_ec_init(void);
|
|
void stout_ec_finalize_smm(void);
|
|
#endif
|
|
|
|
#endif // STOUT_EC_H
|