aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/tyan/s2891/mainboard.c
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-11-10 11:34:13 -0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-11-10 21:35:00 +0100
commit7c29040442a96130756fe6aff35f9d8939268acd (patch)
tree906caf2a1e0ee46a30d5863cd49bf7d609ae674d /src/mainboard/tyan/s2891/mainboard.c
parent52c0180dcc1cc909b5dee308e3f8cf96ec28de5f (diff)
[REMOVAL] tyan/s2891
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: I915d5dd4a095b84023a19c9a0474634320207a08 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/12381 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard/tyan/s2891/mainboard.c')
-rw-r--r--src/mainboard/tyan/s2891/mainboard.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mainboard/tyan/s2891/mainboard.c b/src/mainboard/tyan/s2891/mainboard.c
deleted file mode 100644
index 10d99a29d3..0000000000
--- a/src/mainboard/tyan/s2891/mainboard.c
+++ /dev/null
@@ -1,20 +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>
-
-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,
-};