aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/tyan/s2895/mainboard.c
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-11-10 11:34:51 -0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-11-10 21:21:19 +0100
commit8993df1d1634594da1bde21d0d2a7b9e9a27fab1 (patch)
treea2e56839cf00be554df71f82ed68df7fe936118a /src/mainboard/tyan/s2895/mainboard.c
parentf3601c406f2727463cb97e5a1a911f4d730a072f (diff)
[REMOVAL] tyan/s2895
As announced in http://permalink.gmane.org/gmane.linux.bios/81918 I am removing all boards older than 10 years from the tree. Change-Id: I9099f90c073197cc95bb9630788016b7b8221922 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/12383 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/tyan/s2895/mainboard.c')
-rw-r--r--src/mainboard/tyan/s2895/mainboard.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mainboard/tyan/s2895/mainboard.c b/src/mainboard/tyan/s2895/mainboard.c
deleted file mode 100644
index e62b95ec8f..0000000000
--- a/src/mainboard/tyan/s2895/mainboard.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <console/console.h>
-#include <device/device.h>
-#include <arch/acpi.h>
-#include <cpu/amd/powernow.h>
-#include <arch/acpi.h>
-#include <arch/acpigen.h>
-#include <cpu/amd/amdk8_sysconf.h>
-
-extern u16 pm_base;
-
-static void mainboard_acpi_fill_ssdt_generator(device_t device) {
- amd_generate_powernow(0, 0, 0);
-}
-
-static void mainboard_enable(device_t dev)
-{
- dev->ops->acpi_fill_ssdt_generator = mainboard_acpi_fill_ssdt_generator;
-}
-
-struct chip_operations mainboard_ops = {
- .enable_dev = mainboard_enable,
-};