Use the canonical name of the vendors/devices and the
same format for all CHIP_NAME() entries in LinuxBIOS (Closes #20). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@linuxbios.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2490 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
bdb50fe40a
commit
a7aa29b943
@ -265,6 +265,6 @@ static void enable_dev(struct device *dev)
|
||||
|
||||
|
||||
struct chip_operations cpu_amd_sc520_ops = {
|
||||
CHIP_NAME("AMD SC520")
|
||||
CHIP_NAME("AMD Elan SC520 CPU")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_amd_socket_754_ops = {
|
||||
CHIP_NAME("socket 754")
|
||||
CHIP_NAME("Socket 754 CPU")
|
||||
};
|
||||
|
@ -2,5 +2,5 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations cpu_amd_socket_939_ops = {
|
||||
CHIP_NAME("socket 939")
|
||||
CHIP_NAME("Socket 939 CPU")
|
||||
};
|
||||
|
@ -2,5 +2,5 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations cpu_amd_socket_940_ops = {
|
||||
CHIP_NAME("socket 940")
|
||||
CHIP_NAME("Socket 940 CPU")
|
||||
};
|
||||
|
@ -2,5 +2,5 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations cpu_amd_socket_AM2_ops = {
|
||||
CHIP_NAME("socket AM2")
|
||||
CHIP_NAME("Socket AM2 CPU")
|
||||
};
|
||||
|
@ -2,5 +2,5 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations cpu_amd_socket_F_ops = {
|
||||
CHIP_NAME("socket F")
|
||||
CHIP_NAME("Socket F CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_slot_2_ops = {
|
||||
CHIP_NAME("slot 2")
|
||||
CHIP_NAME("Slot 2 CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_PGA370_ops = {
|
||||
CHIP_NAME("socket PGA370")
|
||||
CHIP_NAME("Socket PGA370 CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_mPGA479M_ops = {
|
||||
CHIP_NAME("socket mPGA479M")
|
||||
CHIP_NAME("Socket mPGA479M CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_opertations cpu_intel_socket_mPGA603_ops = {
|
||||
CHIP_NAME("socket mPGA603_400Mhz")
|
||||
CHIP_NAME("Socket mPGA603 400Mhz CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops = {
|
||||
CHIP_NAME("socket mPGA604_533Mhz")
|
||||
CHIP_NAME("Socket mPGA604 533Mhz CPU")
|
||||
};
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_mPGA604_800Mhz_ops = {
|
||||
CHIP_NAME("socket mPGA604_800Mhz")
|
||||
CHIP_NAME("Socket mPGA604 800Mhz CPU")
|
||||
};
|
||||
|
@ -41,6 +41,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations drivers_i2c_lm63_ops = {
|
||||
CHIP_NAME("lm63")
|
||||
CHIP_NAME("National Semiconductor LM63")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
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 = {
|
||||
CHIP_NAME("AMD Rumba mainboard")
|
||||
CHIP_NAME("AMD Rumba Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_amd_serenade_ops = {
|
||||
CHIP_NAME("AMD Serenade mainboard")
|
||||
CHIP_NAME("AMD Serenade Mainboard")
|
||||
};
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_amd_serengeti_cheetah_ops = {
|
||||
CHIP_NAME("AMD Serengeti Cheetah mainboard")
|
||||
CHIP_NAME("AMD Serengeti Cheetah Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_amd_serengeti_leopard_ops = {
|
||||
CHIP_NAME("AMD Serengeti Leopard mainboard")
|
||||
CHIP_NAME("AMD Serengeti Leopard Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_amd_solo_ops = {
|
||||
CHIP_NAME("AMD Solo7 mainboard")
|
||||
CHIP_NAME("AMD Solo7 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_arima_hdama_ops = {
|
||||
CHIP_NAME("Arima HDAMA mainboard")
|
||||
CHIP_NAME("Arima HDAMA Mainboard")
|
||||
};
|
||||
|
||||
|
@ -39,6 +39,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_artecgroup_dbe61_ops = {
|
||||
CHIP_NAME("Artec Group dbe61 mainboard")
|
||||
CHIP_NAME("Artec Group dbe61 Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_p2b_ops = {
|
||||
CHIP_NAME("ASUS P2B mainboard")
|
||||
CHIP_NAME("ASUS P2B Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_bitworks_ims_ops = {
|
||||
CHIP_NAME("Bitworks IMS mainboard")
|
||||
CHIP_NAME("Bitworks IMS Mainboard")
|
||||
};
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_broadcom_blast_ops = {
|
||||
CHIP_NAME("Broadcom Blast mainboard")
|
||||
CHIP_NAME("Broadcom Blast Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_dell_s1850_ops = {
|
||||
CHIP_NAME("Dell S1850 mainboard")
|
||||
CHIP_NAME("Dell S1850 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_densitron_dpx114_ops = {
|
||||
CHIP_NAME("Densitron DPX114 mainboard")
|
||||
CHIP_NAME("Densitron DPX114 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
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 = {
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM586SEG mainboard")
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM586SEG Mainboard")
|
||||
.enable_dev = enable_dev
|
||||
};
|
||||
|
||||
|
@ -62,7 +62,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_digitallogic_msm800sev_ops = {
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM800SEV mainboard")
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM800SEV Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_eaglelion_5bcm_ops = {
|
||||
CHIP_NAME("Eaglelion 5BCM mainboard")
|
||||
CHIP_NAME("Eaglelion 5BCM Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_emulation_qemu_i386_ops = {
|
||||
CHIP_NAME("QEMU mainboard")
|
||||
CHIP_NAME("QEMU Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_ibm_e325_ops = {
|
||||
CHIP_NAME("IBM eServer 325 mainboard")
|
||||
CHIP_NAME("IBM eServer 325 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_ibm_e326_ops = {
|
||||
CHIP_NAME("IBM eServer 326 mainboard")
|
||||
CHIP_NAME("IBM eServer 326 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_intel_e7520_ops = {
|
||||
CHIP_NAME("Intel Jarell mainboard")
|
||||
CHIP_NAME("Intel Jarell Mainboard")
|
||||
};
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_intel_xe7501devkit_ops = {
|
||||
CHIP_NAME("Intel Xeon E7501 DevKit mainboard")
|
||||
CHIP_NAME("Intel Xeon E7501 DevKit Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -230,7 +230,7 @@ default CONFIG_IOAPIC=1
|
||||
## Clean up the motherboard id strings
|
||||
##
|
||||
default MAINBOARD_PART_NUMBER="dk8_htx"
|
||||
default MAINBOARD_VENDOR="iwill"
|
||||
default MAINBOARD_VENDOR="IWILL"
|
||||
default MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0x1022
|
||||
default MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0x2b80
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_iwill_dk8_htx_ops = {
|
||||
CHIP_NAME("IWILL DK8-HTX mainboard")
|
||||
CHIP_NAME("IWILL DK8-HTX Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_iwill_dk8s2_ops = {
|
||||
CHIP_NAME("IWILL DK8S2 mainboard")
|
||||
CHIP_NAME("IWILL DK8S2 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_iwill_dk8x_ops = {
|
||||
CHIP_NAME("IWILL DK8X mainboard")
|
||||
CHIP_NAME("IWILL DK8X Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_lippert_frontrunner_ops = {
|
||||
CHIP_NAME("Lippert Cool Frontrunner mainboard")
|
||||
CHIP_NAME("Lippert Cool Frontrunner Mainboard")
|
||||
};
|
||||
|
||||
|
@ -110,8 +110,8 @@ default CONFIG_IOAPIC=1
|
||||
##
|
||||
## Clean up the motherboard id strings
|
||||
##
|
||||
default MAINBOARD_PART_NUMBER="KHEPRI"
|
||||
default MAINBOARD_VENDOR="NEWISYS"
|
||||
default MAINBOARD_PART_NUMBER="Khepri"
|
||||
default MAINBOARD_VENDOR="Newisys"
|
||||
|
||||
###
|
||||
### LinuxBIOS layout values
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_newisys_khepri_ops = {
|
||||
CHIP_NAME("Newisys 2100 mainboard")
|
||||
CHIP_NAME("Newisys 2100 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -131,6 +131,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_olpc_btest_ops = {
|
||||
CHIP_NAME("OLPC btest mainboard")
|
||||
CHIP_NAME("OLPC btest Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -103,6 +103,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_olpc_rev_a_ops = {
|
||||
CHIP_NAME("OLPC rev_a mainboard")
|
||||
CHIP_NAME("OLPC rev_a Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_sunw_ultra40_ops = {
|
||||
CHIP_NAME("Sun Ultra 40 mainboard")
|
||||
CHIP_NAME("Sun Ultra 40 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations supermicro_x6dai_g_ops = {
|
||||
CHIP_NAME("Supermicro X6DAi-G mainboard")
|
||||
CHIP_NAME("Supermicro X6DAi-G Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations supermicro_x6dhe_g_ops = {
|
||||
CHIP_NAME("Supermicro X6DHE-G mainboard")
|
||||
CHIP_NAME("Supermicro X6DHE-G Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations supermicro_x6dhe_g2_ops = {
|
||||
CHIP_NAME("Supermicro X6DHE-G2 mainboard")
|
||||
CHIP_NAME("Supermicro X6DHE-G2 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_supermicro_x6dhr_ig_ops = {
|
||||
CHIP_NAME("Supermicro X6DHR-iG mainboard")
|
||||
CHIP_NAME("Supermicro X6DHR-iG Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_supermicro_x6dhr_ig2_ops = {
|
||||
CHIP_NAME("Supermicro X6DHR-iG2 mainboard")
|
||||
CHIP_NAME("Supermicro X6DHR-iG2 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -149,7 +149,7 @@ static void enable_dev(struct device *dev) {
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_technologic_ts5300_ops = {
|
||||
CHIP_NAME("Technologic Systems TS-5300 mainboard")
|
||||
CHIP_NAME("Technologic Systems TS-5300 Mainboard")
|
||||
.enable_dev = enable_dev
|
||||
};
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2735_ops = {
|
||||
CHIP_NAME("Tyan S2735 mainboard")
|
||||
CHIP_NAME("Tyan S2735 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2850_ops = {
|
||||
CHIP_NAME("Tyan S2850 mainboard")
|
||||
CHIP_NAME("Tyan S2850 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2875_ops = {
|
||||
CHIP_NAME("Tyan S2875 mainboard")
|
||||
CHIP_NAME("Tyan S2875 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2880_ops = {
|
||||
CHIP_NAME("Tyan S2880 mainboard")
|
||||
CHIP_NAME("Tyan S2880 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2881_ops = {
|
||||
CHIP_NAME("Tyan S2881 mainboard")
|
||||
CHIP_NAME("Tyan S2881 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2882_ops = {
|
||||
CHIP_NAME("Tyan S2882 mainboard")
|
||||
CHIP_NAME("Tyan S2882 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2885_ops = {
|
||||
CHIP_NAME("Tyan S2885 mainboard")
|
||||
CHIP_NAME("Tyan S2885 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2891_ops = {
|
||||
CHIP_NAME("Tyan S2891 mainboard")
|
||||
CHIP_NAME("Tyan S2891 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2892_ops = {
|
||||
CHIP_NAME("Tyan S2892 mainboard")
|
||||
CHIP_NAME("Tyan S2892 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s2895_ops = {
|
||||
CHIP_NAME("Tyan S2895 mainboard")
|
||||
CHIP_NAME("Tyan S2895 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s4880_ops = {
|
||||
CHIP_NAME("Tyan S4880 mainboard")
|
||||
CHIP_NAME("Tyan S4880 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_tyan_s4882_ops = {
|
||||
CHIP_NAME("Tyan S4882 mainboard")
|
||||
CHIP_NAME("Tyan S4882 Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -41,6 +41,6 @@ void write_protect_vgabios(void)
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_via_epia_m_ops = {
|
||||
CHIP_NAME("VIA EPIA-M mainboard")
|
||||
CHIP_NAME("VIA EPIA-M Mainboard")
|
||||
};
|
||||
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_via_epia_ops = {
|
||||
CHIP_NAME("VIA EPIA mainboard")
|
||||
CHIP_NAME("VIA EPIA Mainboard")
|
||||
};
|
||||
|
||||
|
@ -531,6 +531,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_amd_gx2_ops = {
|
||||
CHIP_NAME("AMD GX2 Northbridge")
|
||||
CHIP_NAME("AMD GX (previously GX2) Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -98,6 +98,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_ibm_cpc710_ops = {
|
||||
CHIP_NAME("CPC710")
|
||||
CHIP_NAME("IBM CPC710 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -98,6 +98,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_ibm_cpc925_ops = {
|
||||
CHIP_NAME("CPC925")
|
||||
CHIP_NAME("IBM CPC925 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -187,6 +187,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_intel_e7501_ops = {
|
||||
CHIP_NAME("Intel E7501 northbridge")
|
||||
CHIP_NAME("Intel E7501 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -181,6 +181,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_intel_i440bx_ops = {
|
||||
CHIP_NAME("Intel 440bx Northbridge")
|
||||
CHIP_NAME("Intel 440BX Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -157,6 +157,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_intel_i855pm_ops = {
|
||||
CHIP_NAME("intel i855pm Northbridge")
|
||||
CHIP_NAME("Intel 855PM Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -150,6 +150,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_transmeta_tm5800_control = {
|
||||
CHIP_NAME("Transmeta tm5800 Northbridge")
|
||||
CHIP_NAME("Transmeta TM5800 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -190,6 +190,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_via_vt8601_ops = {
|
||||
CHIP_NAME("VIA vt8601 Northbridge")
|
||||
CHIP_NAME("VIA VT8601 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -364,6 +364,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations northbridge_via_vt8623_ops = {
|
||||
CHIP_NAME("VIA vt8623 Northbridge")
|
||||
CHIP_NAME("VIA VT8623 Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -65,7 +65,7 @@ void amd8111_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_amd_amd8111_ops = {
|
||||
CHIP_NAME("AMD 8111")
|
||||
CHIP_NAME("AMD-8111 Southbridge")
|
||||
/* This only called when this device is listed in the
|
||||
* static device tree.
|
||||
*/
|
||||
|
@ -198,7 +198,7 @@ static struct pci_driver cs5536_pci_driver __pci_driver = {
|
||||
};
|
||||
|
||||
struct chip_operations southbridge_amd_cs5536_ops = {
|
||||
CHIP_NAME("AMD cs5536")
|
||||
CHIP_NAME("AMD Geode CS5536 Southbridge")
|
||||
/* This only called when this device is listed in the
|
||||
* static device tree.
|
||||
*/
|
||||
|
@ -323,7 +323,7 @@ static struct pci_driver cs5536_lx_pci_driver __pci_driver = {
|
||||
};
|
||||
|
||||
struct chip_operations southbridge_amd_cs5536_lx_ops = {
|
||||
CHIP_NAME("AMD cs5536 (LX)")
|
||||
CHIP_NAME("AMD Geode CS5536 (LX) Southbridge")
|
||||
/* This only called when this device is listed in the
|
||||
* static device tree.
|
||||
*/
|
||||
|
@ -75,6 +75,6 @@ void bcm5785_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_broadcom_bcm5785_ops = {
|
||||
CHIP_NAME("Serverworks bcm5785")
|
||||
CHIP_NAME("Serverworks BCM5785 Southbridge")
|
||||
.enable_dev = bcm5785_enable,
|
||||
};
|
||||
|
@ -43,6 +43,6 @@ void esb6300_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_intel_esb6300_ops = {
|
||||
CHIP_NAME("INTEL 6300ESB")
|
||||
CHIP_NAME("Intel 6300ESB Southbridge")
|
||||
.enable_dev = esb6300_enable,
|
||||
};
|
||||
|
@ -48,6 +48,6 @@ void i82801ca_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_intel_i82801ca_ops = {
|
||||
CHIP_NAME("Intel 82801ca Southbridge")
|
||||
CHIP_NAME("Intel 82801CA Southbridge")
|
||||
.enable_dev = i82801ca_enable,
|
||||
};
|
||||
|
@ -60,6 +60,6 @@ void i82801dbm_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_intel_i82801dbm_control = {
|
||||
CHIP_NAME("Intel 82801dbm Southbridge")
|
||||
CHIP_NAME("Intel 82801DBM Southbridge")
|
||||
.enable_dev = i82801dbm_enable,
|
||||
};
|
||||
|
@ -253,6 +253,6 @@ static struct pci_driver ioapic2_driver __pci_driver = {
|
||||
};
|
||||
|
||||
struct chip_operations southbridge_intel_pxhd_ops = {
|
||||
CHIP_NAME("PXHD")
|
||||
CHIP_NAME("Intel PXHD Southbridge")
|
||||
.enable_dev = pxhd_enable,
|
||||
};
|
||||
|
@ -192,6 +192,6 @@ void ck804_enable(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_nvidia_ck804_ops = {
|
||||
CHIP_NAME("Nvidia ck804")
|
||||
CHIP_NAME("NVIDIA CK804 Southbridge")
|
||||
.enable_dev = ck804_enable,
|
||||
};
|
||||
|
@ -212,6 +212,6 @@ void southbridge_init(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_ricoh_rl5c476_ops = {
|
||||
CHIP_NAME("RICOH RL5C476")
|
||||
CHIP_NAME("Ricoh RL5C476 CardBus Controller")
|
||||
.enable_dev = southbridge_init,
|
||||
};
|
||||
|
@ -68,6 +68,6 @@ static void vt8231_enable(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_via_vt8231_ops = {
|
||||
CHIP_NAME("VIA vt8231")
|
||||
CHIP_NAME("VIA VT8231 Southbridge")
|
||||
.enable_dev = vt8231_enable,
|
||||
};
|
||||
|
@ -92,6 +92,6 @@ static void vt8235_enable(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations southbridge_via_vt8235_ops = {
|
||||
CHIP_NAME("VIA vt8235")
|
||||
CHIP_NAME("VIA VT8235 Southbridge")
|
||||
.enable_dev = vt8235_enable,
|
||||
};
|
||||
|
@ -75,7 +75,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8661f_ops = {
|
||||
CHIP_NAME("ITE it8661f")
|
||||
CHIP_NAME("ITE IT8661F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -79,7 +79,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8671f_ops = {
|
||||
CHIP_NAME("ITE it8671f")
|
||||
CHIP_NAME("ITE IT8671F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -81,7 +81,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8673f_ops = {
|
||||
CHIP_NAME("ITE it8673f")
|
||||
CHIP_NAME("ITE IT8673F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -82,7 +82,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8705f_ops = {
|
||||
CHIP_NAME("ITE it8705f")
|
||||
CHIP_NAME("ITE IT8705F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -87,7 +87,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8712f_ops = {
|
||||
CHIP_NAME("ITE it8712f")
|
||||
CHIP_NAME("ITE IT8712F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -87,7 +87,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8716f_ops = {
|
||||
CHIP_NAME("ITE it8716f")
|
||||
CHIP_NAME("ITE IT8716F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -83,7 +83,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8718f_ops = {
|
||||
CHIP_NAME("ITE it8718f")
|
||||
CHIP_NAME("ITE IT8718F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@ -68,6 +68,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc8374_ops = {
|
||||
CHIP_NAME("NSC 8374")
|
||||
CHIP_NAME("NSC PC8374 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -75,6 +75,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87351_ops = {
|
||||
CHIP_NAME("NSC 87351")
|
||||
CHIP_NAME("NSC PC87351 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -71,6 +71,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87360_ops = {
|
||||
CHIP_NAME("NSC 87360")
|
||||
CHIP_NAME("NSC PC87360 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -71,6 +71,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87366_ops = {
|
||||
CHIP_NAME("NSC 87366")
|
||||
CHIP_NAME("NSC PC87366 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -72,6 +72,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87417_ops = {
|
||||
CHIP_NAME("NSC pc87417")
|
||||
CHIP_NAME("NSC PC87417 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -72,6 +72,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87427_ops = {
|
||||
CHIP_NAME("NSC 87427")
|
||||
CHIP_NAME("NSC PC87427 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -83,6 +83,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc97307_ops = {
|
||||
CHIP_NAME("NSC 97307")
|
||||
CHIP_NAME("NSC PC97307 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user