summaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/emulation/qemu-i440fx/northbridge.c4
-rw-r--r--src/mainboard/supermicro/x10slm-f/mainboard.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/emulation/qemu-i440fx/northbridge.c b/src/mainboard/emulation/qemu-i440fx/northbridge.c
index 5fe12e715d..6c26366ad7 100644
--- a/src/mainboard/emulation/qemu-i440fx/northbridge.c
+++ b/src/mainboard/emulation/qemu-i440fx/northbridge.c
@@ -276,11 +276,11 @@ static void northbridge_enable(struct device *dev)
}
struct chip_operations mainboard_emulation_qemu_i440fx_ops = {
- CHIP_NAME("QEMU Northbridge i440fx")
+ .name = "QEMU Northbridge i440fx",
.enable_dev = northbridge_enable,
};
struct chip_operations mainboard_emulation_qemu_q35_ops = {
- CHIP_NAME("QEMU Northbridge q35")
+ .name = "QEMU Northbridge q35",
.enable_dev = northbridge_enable,
};
diff --git a/src/mainboard/supermicro/x10slm-f/mainboard.c b/src/mainboard/supermicro/x10slm-f/mainboard.c
index 98548e33ba..37c1eb4dd8 100644
--- a/src/mainboard/supermicro/x10slm-f/mainboard.c
+++ b/src/mainboard/supermicro/x10slm-f/mainboard.c
@@ -35,6 +35,6 @@ static void mainboard_enable(struct device *dev)
}
struct chip_operations mainboard_ops = {
- CHIP_NAME("X10SLM+-F")
+ .name = "X10SLM+-F",
.enable_dev = mainboard_enable,
};