Fix some CHIP_NAME() entries to use canonical names.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2557 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
7014ef83b9
commit
8a20213dde
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_gigabyte_m57sli_ops = {
|
||||
CHIP_NAME("GIGABYTE M575SLI mainboard")
|
||||
CHIP_NAME("GIGABYTE GA-M57SLI Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_msi_ms9185_ops = {
|
||||
CHIP_NAME("MSI MS-9185 mainboard")
|
||||
CHIP_NAME("MSI MS-9185 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_msi_ms9282_ops = {
|
||||
CHIP_NAME("MSI ms9282 mainboard")
|
||||
CHIP_NAME("MSI MS-9282 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_nvidia_l1_2pvv_ops = {
|
||||
CHIP_NAME("Nvidia l1_2pvv mainboard")
|
||||
CHIP_NAME("NVIDIA l1_2pvv Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_supermicro_h8dmr_ops = {
|
||||
CHIP_NAME("Spermicro H8DMR mainboard")
|
||||
CHIP_NAME("Supermicro H8DMR Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2912_ops = {
|
||||
CHIP_NAME("Tyan S2912 mainboard")
|
||||
CHIP_NAME("Tyan S2912 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -146,6 +146,6 @@ static void enable_dev(struct device *dev)
|
|||
}
|
||||
|
||||
struct chip_operations northbridge_motorola_mpc107_ops = {
|
||||
CHIP_NAME("MPC107")
|
||||
CHIP_NAME("Motorola MPC107 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
|
|
@ -243,6 +243,6 @@ void mcp55_enable(device_t dev)
|
|||
}
|
||||
|
||||
struct chip_operations southbridge_nvidia_mcp55_ops = {
|
||||
CHIP_NAME("Nvidia mcp55")
|
||||
CHIP_NAME("NVIDIA MCP55 Southbridge")
|
||||
.enable_dev = mcp55_enable,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue