aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/packardbell
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-05-28 10:04:20 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-06-21 08:43:03 +0000
commit4c0d5cbb87df54897601d1b19dd5d2f7f4907eb4 (patch)
treedadd8c04ac3905cd65a840697ecd29044f4d5b22 /src/mainboard/packardbell
parent04326aabcdccabf83064d585758c6d635b9f1a3b (diff)
mb/*/{x201,packardbell}: Remove unused C-state generation functions
Those are copied from Lenovo X60 code, but are unused. NOTE: No ACPI C-state are generated on this platform but Linux has a separate driver for that. Change-Id: Ie9b49f5451d8cde9c36672cac1f0f14cb3f0095e Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33140 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/packardbell')
-rw-r--r--src/mainboard/packardbell/ms2290/mainboard.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mainboard/packardbell/ms2290/mainboard.c b/src/mainboard/packardbell/ms2290/mainboard.c
index 09310aef72..28d3bb0958 100644
--- a/src/mainboard/packardbell/ms2290/mainboard.c
+++ b/src/mainboard/packardbell/ms2290/mainboard.c
@@ -24,7 +24,6 @@
#include <northbridge/intel/nehalem/nehalem.h>
#include <southbridge/intel/bd82x6x/pch.h>
#include <ec/acpi/ec.h>
-#include <arch/acpigen.h>
#include <drivers/intel/gma/int15.h>
#include <arch/interrupt.h>
#include <pc80/keyboard.h>
@@ -32,20 +31,6 @@
#include <device/pci.h>
#include <smbios.h>
-static acpi_cstate_t cst_entries[] = {
- {1, 1, 1000, {0x7f, 1, 2, 0, 1, 0} },
- {2, 1, 500, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV2, 0} },
- {2, 17, 250, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV3, 0} },
-};
-
-int get_cst_entries(acpi_cstate_t ** entries)
-{
- *entries = cst_entries;
- return ARRAY_SIZE(cst_entries);
-}
-
-
-
static void mainboard_enable(struct device *dev)
{
u16 pmbase;