Done with sed and God Lines. Only done for C-like code for now. Change-Id: Ia64c49aed694eac1f98d176c646a60597c8ae66a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40193 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
24 lines
423 B
C
24 lines
423 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <cpu/x86/smm.h>
|
|
#include <ec/google/wilco/smm.h>
|
|
#include <intelblocks/smihandler.h>
|
|
#include <variant/ec.h>
|
|
|
|
void mainboard_smi_espi_handler(void)
|
|
{
|
|
wilco_ec_smi_espi();
|
|
}
|
|
|
|
void mainboard_smi_sleep(u8 slp_typ)
|
|
{
|
|
wilco_ec_smi_sleep(slp_typ);
|
|
}
|
|
|
|
int mainboard_smi_apmc(u8 apmc)
|
|
{
|
|
wilco_ec_smi_apmc(apmc);
|
|
return 0;
|
|
}
|