Done with sed and God Lines. Only done for C-like code for now. Change-Id: I422d072a9ab3350e364004ba34911cd183fc6612 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40052 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
13 lines
255 B
C
13 lines
255 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#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
|