aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/bap/ode_e21XX/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-06-04 10:15:50 +0200
committerNico Huber <nico.h@gmx.de>2020-06-18 09:10:53 +0000
commit7ac76ecf9127d2b58467a49746b9fc112dd4ef4c (patch)
tree3a0d9e3701fc96305d25115d77ad1d38c87be57f /src/mainboard/bap/ode_e21XX/mainboard.c
parent6abee842504bc41e1915d19588edeb62d3e0dca7 (diff)
mb/bap/ode_e21XX: Drop left over unmaintained ROMCC board
Remove unmaintained and unsupported old ROMCC board. This board wasn't hooked up for build. Change-Id: Idd907311dde187aa62d29a9d3943b6d5c08a1f71 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42071 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/bap/ode_e21XX/mainboard.c')
-rw-r--r--src/mainboard/bap/ode_e21XX/mainboard.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/bap/ode_e21XX/mainboard.c b/src/mainboard/bap/ode_e21XX/mainboard.c
deleted file mode 100644
index ce4a63ccc3..0000000000
--- a/src/mainboard/bap/ode_e21XX/mainboard.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <console/console.h>
-#include <device/device.h>
-#include <device/pci_def.h>
-#include <cpu/x86/msr.h>
-#include <cpu/amd/mtrr.h>
-
-/**********************************************
- * enable the dedicated function in mainboard.
- **********************************************/
-static void mainboard_enable(struct device *dev)
-{
- printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
-}
-
-struct chip_operations mainboard_ops = {
- .enable_dev = mainboard_enable,
-};