summaryrefslogtreecommitdiff
path: root/src/ec/dell/mec5055/acpi.c
blob: ad4a34a466b54d6752740f585b5e3ffc713aff74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include "mec5055.h"

void mec5055_ec_acpi_enable(void)
{
	u8 buf1[32] = {0};
	/* FIXME: only one arg? */
	buf1[2] = 1;
	mec5055_ec_command_0(buf1, 0x19, 3);
	buf1[2] = 1;
	mec5055_ec_command_0(buf1, 0x3a, 3);
}