aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/bap/ode_e21XX/mainboard.c
diff options
context:
space:
mode:
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,
-};