b6636b0ea8
Done with sed and God Lines. Only done for C-like code for now. Change-Id: If85e246550abe323d6a2a7c6301e8e91858cbe3a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40177 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
20 lines
575 B
C
20 lines
575 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <arch/acpi.h>
|
|
#include <ec/ec.h>
|
|
#include <ec/google/chromeec/ec.h>
|
|
#include <variant/ec.h>
|
|
|
|
void mainboard_ec_init(void)
|
|
{
|
|
const struct google_chromeec_event_info info = {
|
|
.log_events = MAINBOARD_EC_LOG_EVENTS,
|
|
.sci_events = MAINBOARD_EC_SCI_EVENTS,
|
|
.s3_wake_events = MAINBOARD_EC_S3_WAKE_EVENTS,
|
|
.s5_wake_events = MAINBOARD_EC_S5_WAKE_EVENTS,
|
|
.s0ix_wake_events = MAINBOARD_EC_S0IX_WAKE_EVENTS,
|
|
};
|
|
|
|
google_chromeec_events_init(&info, acpi_is_wakeup_s3());
|
|
}
|