summaryrefslogtreecommitdiffstats
path: root/src/mainboard/gigabyte/ga-g41m-es2l/cstates.c
blob: 0a7b9b98f428c13f566dfb18d80786c068de2705 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

#include <acpi/acpigen.h>

static acpi_cstate_t cst_entries[] = {};

int get_cst_entries(acpi_cstate_t **entries)
{
	*entries = cst_entries;
	return ARRAY_SIZE(cst_entries);
}