Fix the CHIP_NAME() entries of all mainboards to have the same format
and (hopefully) the correct canonical name of the vendor and board. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2476 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
733681583c
commit
e0e1d42527
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_advantech_som_gx533c_ops = {
|
struct chip_operations mainboard_advantech_som_gx533c_ops = {
|
||||||
CHIP_NAME("Advantech SOM GX DB533-C mainboard ")
|
CHIP_NAME("Advantech SOM GX DB533-C mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,5 +7,5 @@
|
||||||
|
|
||||||
|
|
||||||
struct chip_operations mainboard_amd_quartet_ops = {
|
struct chip_operations mainboard_amd_quartet_ops = {
|
||||||
CHIP_NAME("AMD Quartet mainboard ")
|
CHIP_NAME("AMD Quartet mainboard")
|
||||||
};
|
};
|
||||||
|
|
|
@ -37,7 +37,7 @@ static void enable_dev(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_amd_rumba_ops = {
|
struct chip_operations mainboard_amd_rumba_ops = {
|
||||||
CHIP_NAME("AMD Rumba mainboard ")
|
CHIP_NAME("AMD Rumba mainboard")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_amd_serenade_ops = {
|
struct chip_operations mainboard_amd_serenade_ops = {
|
||||||
CHIP_NAME("AMD Serenade mainboard ")
|
CHIP_NAME("AMD Serenade mainboard")
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_amd_serengeti_cheetah_ops = {
|
struct chip_operations mainboard_amd_serengeti_cheetah_ops = {
|
||||||
CHIP_NAME("AMD serengeti_cheetah mainboard")
|
CHIP_NAME("AMD Serengeti Cheetah mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_amd_serengeti_leopard_ops = {
|
struct chip_operations mainboard_amd_serengeti_leopard_ops = {
|
||||||
CHIP_NAME("AMD serengeti_leopard mainboard")
|
CHIP_NAME("AMD Serengeti Leopard mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
|
|
||||||
|
|
||||||
struct chip_operations mainboard_arima_hdama_ops = {
|
struct chip_operations mainboard_arima_hdama_ops = {
|
||||||
CHIP_NAME("Arima Hdama mainboard")
|
CHIP_NAME("Arima HDAMA mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ static void enable_dev(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_artecgroup_dbe61_ops = {
|
struct chip_operations mainboard_artecgroup_dbe61_ops = {
|
||||||
CHIP_NAME("artecgroup dbe61 mainboard ")
|
CHIP_NAME("Artec Group dbe61 mainboard")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_asus_p2b_ops = {
|
struct chip_operations mainboard_asus_p2b_ops = {
|
||||||
CHIP_NAME("ASUS P2B mainboard ")
|
CHIP_NAME("ASUS P2B mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_bitworks_ims_ops = {
|
struct chip_operations mainboard_bitworks_ims_ops = {
|
||||||
CHIP_NAME("Bitworks IMS mainboard ")
|
CHIP_NAME("Bitworks IMS mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_broadcom_blast_ops = {
|
struct chip_operations mainboard_broadcom_blast_ops = {
|
||||||
CHIP_NAME("Broadcom blast mainboard")
|
CHIP_NAME("Broadcom Blast mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_dell_s1850_ops = {
|
struct chip_operations mainboard_dell_s1850_ops = {
|
||||||
CHIP_NAME("Dell S1850")
|
CHIP_NAME("Dell S1850 mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_densitron_dpx114_ops = {
|
struct chip_operations mainboard_densitron_dpx114_ops = {
|
||||||
CHIP_NAME("Densitron DPX114 mainboard ")
|
CHIP_NAME("Densitron DPX114 mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_digitallogic_adl855pc_ops = {
|
struct chip_operations mainboard_digitallogic_adl855pc_ops = {
|
||||||
CHIP_NAME("Digital Logic ADL855PC mainboard ")
|
CHIP_NAME("DIGITAL-LOGIC ADL855PC mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,7 @@ static void enable_dev(struct device *dev) {
|
||||||
|
|
||||||
}
|
}
|
||||||
struct chip_operations mainboard_digitallogic_msm586seg_ops = {
|
struct chip_operations mainboard_digitallogic_msm586seg_ops = {
|
||||||
CHIP_NAME("Digital Logic MSM586SEG mainboard ")
|
CHIP_NAME("DIGITAL-LOGIC MSM586SEG mainboard")
|
||||||
.enable_dev = enable_dev
|
.enable_dev = enable_dev
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ static void enable_dev(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_digitallogic_msm800sev_ops = {
|
struct chip_operations mainboard_digitallogic_msm800sev_ops = {
|
||||||
CHIP_NAME("digitallogip msm800sev mainboard ")
|
CHIP_NAME("DIGITAL-LOGIC MSM800SEV mainboard")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_eaglelion_5bcm_ops = {
|
struct chip_operations mainboard_eaglelion_5bcm_ops = {
|
||||||
CHIP_NAME("Eaglelion 5BCM mainboard ")
|
CHIP_NAME("Eaglelion 5BCM mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_emulation_qemu_i386_ops = {
|
struct chip_operations mainboard_emulation_qemu_i386_ops = {
|
||||||
CHIP_NAME("qemu mainboard ")
|
CHIP_NAME("QEMU mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_ibm_e325_ops = {
|
struct chip_operations mainboard_ibm_e325_ops = {
|
||||||
CHIP_NAME("IBM E325 mainboard ")
|
CHIP_NAME("IBM eServer 325 mainboard")
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_ibm_e326_ops = {
|
struct chip_operations mainboard_ibm_e326_ops = {
|
||||||
CHIP_NAME("IBM E326 mainboard ")
|
CHIP_NAME("IBM eServer 326 mainboard")
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_intel_e7520_ops = {
|
struct chip_operations mainboard_intel_e7520_ops = {
|
||||||
CHIP_NAME("Intel Jarell mainboard ")
|
CHIP_NAME("Intel Jarell mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_iwill_dk8_htx_ops = {
|
struct chip_operations mainboard_iwill_dk8_htx_ops = {
|
||||||
CHIP_NAME("Iwill DK8-HTX mainboard")
|
CHIP_NAME("IWILL DK8-HTX mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_iwill_dk8s2_ops = {
|
struct chip_operations mainboard_iwill_dk8s2_ops = {
|
||||||
CHIP_NAME("Iwill DK8S2 mainboard")
|
CHIP_NAME("IWILL DK8S2 mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_iwill_dk8x_ops = {
|
struct chip_operations mainboard_iwill_dk8x_ops = {
|
||||||
CHIP_NAME("Iwill DK8X mainboard")
|
CHIP_NAME("IWILL DK8X mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_lippert_frontrunner_ops = {
|
struct chip_operations mainboard_lippert_frontrunner_ops = {
|
||||||
CHIP_NAME("Lippert frontrunner mainboard ")
|
CHIP_NAME("Lippert Cool Frontrunner mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -131,7 +131,6 @@ static void enable_dev(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_olpc_btest_ops = {
|
struct chip_operations mainboard_olpc_btest_ops = {
|
||||||
CHIP_NAME("olpc btest mainboard ")
|
CHIP_NAME("OLPC btest mainboard")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -103,7 +103,6 @@ static void enable_dev(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_olpc_rev_a_ops = {
|
struct chip_operations mainboard_olpc_rev_a_ops = {
|
||||||
CHIP_NAME("olpc rev_a mainboard ")
|
CHIP_NAME("OLPC rev_a mainboard")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_sunw_ultra40_ops = {
|
struct chip_operations mainboard_sunw_ultra40_ops = {
|
||||||
CHIP_NAME("Sun ultra40 mainboard")
|
CHIP_NAME("Sun Ultra 40 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations supermicro_x6dai_g_ops = {
|
struct chip_operations supermicro_x6dai_g_ops = {
|
||||||
CHIP_NAME("Supermicro X6DAI_G mainboard ")
|
CHIP_NAME("Supermicro X6DAi-G mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations supermicro_x6dhe_g_ops = {
|
struct chip_operations supermicro_x6dhe_g_ops = {
|
||||||
CHIP_NAME("Supermicro X6DHE_G mainboard")
|
CHIP_NAME("Supermicro X6DHE-G mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations supermicro_x6dhe_g2_ops = {
|
struct chip_operations supermicro_x6dhe_g2_ops = {
|
||||||
CHIP_NAME("Supermicro X6DHE_G2 mainboard")
|
CHIP_NAME("Supermicro X6DHE-G2 mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_supermicro_x6dhr_ig_ops = {
|
struct chip_operations mainboard_supermicro_x6dhr_ig_ops = {
|
||||||
CHIP_NAME("Supermicro x6dhr-ig")
|
CHIP_NAME("Supermicro X6DHR-iG mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_supermicro_x6dhr_ig2_ops = {
|
struct chip_operations mainboard_supermicro_x6dhr_ig2_ops = {
|
||||||
CHIP_NAME("Supermicro x6dhr-ig2")
|
CHIP_NAME("Supermicro X6DHR-iG2 mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -149,7 +149,7 @@ static void enable_dev(struct device *dev) {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_technologic_ts5300_ops = {
|
struct chip_operations mainboard_technologic_ts5300_ops = {
|
||||||
CHIP_NAME("Technologic Systems TS5300 mainboard ")
|
CHIP_NAME("Technologic Systems TS-5300 mainboard")
|
||||||
.enable_dev = enable_dev
|
.enable_dev = enable_dev
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2735_ops = {
|
struct chip_operations mainboard_tyan_s2735_ops = {
|
||||||
CHIP_NAME("Tyan s2735 mainboard")
|
CHIP_NAME("Tyan S2735 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2850_ops = {
|
struct chip_operations mainboard_tyan_s2850_ops = {
|
||||||
CHIP_NAME("Tyan s2850 mainboard")
|
CHIP_NAME("Tyan S2850 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2875_ops = {
|
struct chip_operations mainboard_tyan_s2875_ops = {
|
||||||
CHIP_NAME("Tyan s2875 mainboard")
|
CHIP_NAME("Tyan S2875 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2880_ops = {
|
struct chip_operations mainboard_tyan_s2880_ops = {
|
||||||
CHIP_NAME("Tyan s2880 mainboard")
|
CHIP_NAME("Tyan S2880 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2881_ops = {
|
struct chip_operations mainboard_tyan_s2881_ops = {
|
||||||
CHIP_NAME("Tyan s2881 mainboard")
|
CHIP_NAME("Tyan S2881 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2882_ops = {
|
struct chip_operations mainboard_tyan_s2882_ops = {
|
||||||
CHIP_NAME("Tyan s2882 mainboard")
|
CHIP_NAME("Tyan S2882 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2885_ops = {
|
struct chip_operations mainboard_tyan_s2885_ops = {
|
||||||
CHIP_NAME("Tyan s2885 mainboard")
|
CHIP_NAME("Tyan S2885 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2891_ops = {
|
struct chip_operations mainboard_tyan_s2891_ops = {
|
||||||
CHIP_NAME("Tyan s2891 mainboard")
|
CHIP_NAME("Tyan S2891 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2892_ops = {
|
struct chip_operations mainboard_tyan_s2892_ops = {
|
||||||
CHIP_NAME("Tyan s2892 mainboard")
|
CHIP_NAME("Tyan S2892 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s2895_ops = {
|
struct chip_operations mainboard_tyan_s2895_ops = {
|
||||||
CHIP_NAME("Tyan s2895 mainboard")
|
CHIP_NAME("Tyan S2895 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s4880_ops = {
|
struct chip_operations mainboard_tyan_s4880_ops = {
|
||||||
CHIP_NAME("Tyan s4880 mainboard")
|
CHIP_NAME("Tyan S4880 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
#if CONFIG_CHIP_NAME == 1
|
#if CONFIG_CHIP_NAME == 1
|
||||||
struct chip_operations mainboard_tyan_s4882_ops = {
|
struct chip_operations mainboard_tyan_s4882_ops = {
|
||||||
CHIP_NAME("Tyan s4882 mainboard")
|
CHIP_NAME("Tyan S4882 mainboard")
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -41,6 +41,6 @@ void write_protect_vgabios(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations mainboard_via_epia_m_ops = {
|
struct chip_operations mainboard_via_epia_m_ops = {
|
||||||
CHIP_NAME("VIA EPIA-M mainboard ")
|
CHIP_NAME("VIA EPIA-M mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
struct chip_operations mainboard_via_epia_ops = {
|
struct chip_operations mainboard_via_epia_ops = {
|
||||||
CHIP_NAME("VIA EPIA mainboard ")
|
CHIP_NAME("VIA EPIA mainboard")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue