summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cpu/amd/pi/00730F01/Makefile.mk1
-rw-r--r--src/cpu/amd/pi/00730F01/chip_name.c7
-rw-r--r--src/cpu/intel/model_1067x/model_1067x_init.c4
-rw-r--r--src/cpu/intel/slot_1/Makefile.mk1
-rw-r--r--src/cpu/intel/slot_1/slot_1.c7
5 files changed, 0 insertions, 20 deletions
diff --git a/src/cpu/amd/pi/00730F01/Makefile.mk b/src/cpu/amd/pi/00730F01/Makefile.mk
index ae5a20bbf41c..9b3f015cf1b8 100644
--- a/src/cpu/amd/pi/00730F01/Makefile.mk
+++ b/src/cpu/amd/pi/00730F01/Makefile.mk
@@ -2,7 +2,6 @@
romstage-y += cpu_io_init.c
-ramstage-y += chip_name.c
ramstage-y += cpu_io_init.c
ramstage-y += model_16_init.c
ramstage-y += update_microcode.c
diff --git a/src/cpu/amd/pi/00730F01/chip_name.c b/src/cpu/amd/pi/00730F01/chip_name.c
deleted file mode 100644
index 592fcc0dffc0..000000000000
--- a/src/cpu/amd/pi/00730F01/chip_name.c
+++ /dev/null
@@ -1,7 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <device/device.h>
-
-struct chip_operations cpu_amd_pi_00730F01_ops = {
- .name = "AMD CPU Family 16h Model 30h-3Fh",
-};
diff --git a/src/cpu/intel/model_1067x/model_1067x_init.c b/src/cpu/intel/model_1067x/model_1067x_init.c
index c2019ab13b4b..d051e8915b4d 100644
--- a/src/cpu/intel/model_1067x/model_1067x_init.c
+++ b/src/cpu/intel/model_1067x/model_1067x_init.c
@@ -275,7 +275,3 @@ static const struct cpu_driver driver __cpu_driver = {
.ops = &cpu_dev_ops,
.id_table = cpu_table,
};
-
-struct chip_operations cpu_intel_model_1067x_ops = {
- .name = "Intel Penryn CPU",
-};
diff --git a/src/cpu/intel/slot_1/Makefile.mk b/src/cpu/intel/slot_1/Makefile.mk
index 856ecf66976a..0f1ba8da7a3a 100644
--- a/src/cpu/intel/slot_1/Makefile.mk
+++ b/src/cpu/intel/slot_1/Makefile.mk
@@ -1,6 +1,5 @@
## SPDX-License-Identifier: GPL-2.0-or-later
-ramstage-y += slot_1.c
ramstage-y += l2_cache.c
subdirs-y += ../model_6xx
subdirs-y += ../model_65x
diff --git a/src/cpu/intel/slot_1/slot_1.c b/src/cpu/intel/slot_1/slot_1.c
deleted file mode 100644
index ed8e88c0a4fa..000000000000
--- a/src/cpu/intel/slot_1/slot_1.c
+++ /dev/null
@@ -1,7 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <device/device.h>
-
-struct chip_operations cpu_intel_slot_1_ops = {
- .name = "Slot 1 CPU",
-};