Carl-Daniel's part:
This patch converts mainboard_$VENDOR_$BOARD_ops to mainboard_ops and mainboard_$VENDOR_$BOARD_config to mainboard_config. Ron's part: The config change that makes the naming change not break every build. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3954 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
d58671c4bf
commit
7ad11e8d33
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_a_trend_atc_6220_ops;
|
||||
struct mainboard_a_trend_atc_6220_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_a_trend_atc_6220_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("A-Trend ATC-6220 Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_a_trend_atc_6240_ops;
|
||||
struct mainboard_a_trend_atc_6240_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_a_trend_atc_6240_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("A-Trend ATC-6240 Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_abit_be6_ii_v2_0_ops;
|
||||
struct mainboard_abit_be6_ii_v2_0_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_abit_be6_ii_v2_0_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Abit BE6-II V2.0 Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_advantech_pcm_5820_ops;
|
||||
struct mainboard_advantech_pcm_5820_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_advantech_pcm_5820_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Advantech PCM-5820 Mainboard")
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_amd_db800_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_db800_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ static void enable_dev(struct device *dev)
|
||||
dev->ops->init = init;
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_amd_db800_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD DB800 Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -17,9 +17,9 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_amd_dbm690t_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_dbm690t_config
|
||||
struct mainboard_config
|
||||
{
|
||||
u32 uma_size; /* How many UMA should be used in memory for TOP. */
|
||||
};
|
||||
|
@ -199,8 +199,8 @@ static void set_thermal_config()
|
||||
*************************************************/
|
||||
void dbm690t_enable(device_t dev)
|
||||
{
|
||||
struct mainboard_amd_dbm690t_config *mainboard =
|
||||
(struct mainboard_amd_dbm690t_config *)dev->chip_info;
|
||||
struct mainboard_config *mainboard =
|
||||
(struct mainboard_config *)dev->chip_info;
|
||||
|
||||
printk_info("Mainboard DBM690T Enable. dev=0x%x\n", dev);
|
||||
|
||||
@ -266,7 +266,7 @@ int add_mainboard_resources(struct lb_memory *mem)
|
||||
/*
|
||||
* CONFIG_CHIP_NAME defined in Option.lb.
|
||||
*/
|
||||
struct chip_operations mainboard_amd_dbm690t_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD DBM690T Mainboard")
|
||||
.enable_dev = dbm690t_enable,
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_amd_norwich_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_norwich_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ static void enable_dev(struct device *dev)
|
||||
dev->ops->init = init;
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_amd_norwich_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD Norwich Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -17,9 +17,9 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_amd_pistachio_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_pistachio_config
|
||||
struct mainboard_config
|
||||
{
|
||||
unsigned long uma_size; /* How many UMA should be used in memory for TOP. */
|
||||
};
|
||||
|
@ -271,8 +271,8 @@ static void set_thermal_config()
|
||||
*************************************************/
|
||||
void pistachio_enable(device_t dev)
|
||||
{
|
||||
struct mainboard_amd_pistachio_config *mainboard =
|
||||
(struct mainboard_amd_pistachio_config *)dev->chip_info;
|
||||
struct mainboard_config *mainboard =
|
||||
(struct mainboard_config *)dev->chip_info;
|
||||
|
||||
printk_info("Mainboard Pistachio Enable. dev=0x%x\n", dev);
|
||||
|
||||
@ -338,7 +338,7 @@ int add_mainboard_resources(struct lb_memory *mem)
|
||||
/*
|
||||
* CONFIG_CHIP_NAME defined in Option.lb.
|
||||
*/
|
||||
struct chip_operations mainboard_amd_pistachio_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD Pistachio Mainboard")
|
||||
.enable_dev = pistachio_enable,
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_amd_rumba_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_rumba_config {
|
||||
struct mainboard_config {
|
||||
int nicirq;
|
||||
};
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
static void init(struct device *dev) {
|
||||
struct mainboard_amd_rumba_config *mainboard = (struct mainboard_amd_rumba_config*)dev->chip_info;
|
||||
struct mainboard_config *mainboard = (struct mainboard_config*)dev->chip_info;
|
||||
device_t nic = NULL;
|
||||
unsigned bus = 0;
|
||||
unsigned devfn = PCI_DEVFN(0xd, 0);
|
||||
@ -36,7 +36,7 @@ static void enable_dev(struct device *dev)
|
||||
dev->ops->init = init;
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_amd_rumba_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD Rumba Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
extern struct chip_operations mainboard_amd_serengeti_cheetah_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_serengeti_cheetah_config {
|
||||
struct mainboard_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_amd_serengeti_cheetah_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD Serengeti Cheetah Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -18,9 +18,9 @@
|
||||
*/
|
||||
|
||||
|
||||
extern struct chip_operations mainboard_amd_serengeti_cheetah_fam10_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_amd_serengeti_cheetah_fam10_config {
|
||||
struct mainboard_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_amd_serengeti_cheetah_fam10_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AMD family 10 Cheetah mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_arima_hdama_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_arima_hdama_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_arima_hdama_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Arima HDAMA Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_artecgroup_dbe61_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_artecgroup_dbe61_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -52,7 +52,7 @@ static void enable_dev(struct device *dev)
|
||||
dev->ops->init = init;
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_artecgroup_dbe61_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Artec Group dbe61 Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asi_mb_5blgp_ops;
|
||||
struct mainboard_asi_mb_5blgp_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asi_mb_5blgp_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASI MB-5BLGP Mainboard")
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asi_mb_5blmp_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_asi_mb_5blmp_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asi_mb_5blmp_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASI/BCom MB-5BLMP Mainboard")
|
||||
};
|
||||
|
||||
|
@ -19,8 +19,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_a8n_e_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_asus_a8n_e_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_asus_a8n_e_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS A8N-E Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -17,7 +17,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_a8v_e_se_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_asus_a8v_e_se_config {
|
||||
struct mainboard_config {
|
||||
};
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_asus_a8v_e_se_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS A8V-E SE Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -17,7 +17,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_m2v_mx_se_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_asus_m2v_mx_se_config {
|
||||
struct mainboard_config {
|
||||
};
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_asus_m2v_se_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS M2V-MX SE Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_mew_am_ops;
|
||||
struct mainboard_asus_mew_am_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_mew_am_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS MEW-AM Mainboard")
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_asus_mew_vm_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_asus_mew_vm_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_mew_vm_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS MEW-VM Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_p2b_ds_ops;
|
||||
struct mainboard_asus_p2b_ds_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_p2b_ds_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS P2B-DS Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_p2b_f_ops;
|
||||
struct mainboard_asus_p2b_f_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_p2b_f_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS P2B-F Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_p2b_ops;
|
||||
struct mainboard_asus_p2b_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_p2b_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS P2B Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_asus_p3b_f_ops;
|
||||
struct mainboard_asus_p3b_f_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_asus_p3b_f_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("ASUS P3B-F Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_axus_tc320_ops;
|
||||
struct mainboard_axus_tc320_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_axus_tc320_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AXUS TC320 Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_azza_pt_6ibd_ops;
|
||||
struct mainboard_azza_pt_6ibd_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_azza_pt_6ibd_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("AZZA PT-6IBD Mainboard")
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_bcom_winnet100_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_bcom_winnet100_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_bcom_winnet100_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("BCOM WinNET100 Mainboard")
|
||||
};
|
||||
|
@ -19,8 +19,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_bcom_winnetp680_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_bcom_winnetp680_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -22,6 +22,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_bcom_winnetp680_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("BCOM WinNET P680 Mainboard")
|
||||
};
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_biostar_m6tba_ops;
|
||||
struct mainboard_biostar_m6tba_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_biostar_m6tba_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Biostar M6TBA Mainboard")
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
extern struct chip_operations mainboard_broadcom_blast_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_broadcom_blast_config {
|
||||
struct mainboard_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_broadcom_blast_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Broadcom Blast Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_compaq_deskpro_en_sff_p600_ops;
|
||||
struct mainboard_compaq_deskpro_en_sff_p600_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_compaq_deskpro_en_sff_p600_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Compaq Deskpro EN SFF P600 Mainboard")
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
struct chip_operations mainboard_dell_s1850_ops;
|
||||
struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_dell_s1850_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_dell_s1850_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Dell S1850 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_digitallogic_adl855pc_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_digitallogic_adl855pc_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_digitallogic_adl855pc_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("DIGITAL-LOGIC ADL855PC Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_digitallogic_msm586seg_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_digitallogic_msm586seg_config {
|
||||
struct mainboard_config {
|
||||
|
||||
};
|
||||
|
@ -141,7 +141,7 @@ static void enable_dev(struct device *dev) {
|
||||
|
||||
|
||||
}
|
||||
struct chip_operations mainboard_digitallogic_msm586seg_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM586SEG Mainboard")
|
||||
.enable_dev = enable_dev
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_digitallogic_msm800sev_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_digitallogic_msm800sev_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ static void enable_dev(struct device *dev)
|
||||
dev->ops->init = init;
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_digitallogic_msm800sev_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("DIGITAL-LOGIC MSM800SEV Mainboard")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_eaglelion_5bcm_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_eaglelion_5bcm_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_eaglelion_5bcm_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Eaglelion 5BCM Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern struct chip_operations mainboard_emulation_qemu_x86_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_emulation_qemu_x86_config {
|
||||
struct mainboard_config {
|
||||
};
|
||||
|
@ -35,7 +35,7 @@ static const struct pci_driver vga_driver __pci_driver = {
|
||||
.device = 0x00b8,
|
||||
};
|
||||
|
||||
struct chip_operations mainboard_emulation_qemu_x86_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("QEMU Mainboard")
|
||||
};
|
||||
|
||||
|
@ -18,5 +18,5 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_gigabyte_ga_6bxc_ops;
|
||||
struct mainboard_gigabyte_ga_6bxc_config {};
|
||||
extern struct chip_operations mainboard_ops;
|
||||
struct mainboard_config {};
|
||||
|
@ -21,6 +21,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_gigabyte_ga_6bxc_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("GIGABYTE GA-6BXC Mainboard")
|
||||
};
|
||||
|
@ -19,7 +19,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_gigabyte_ga_2761gxdk_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_gigabyte_ga_2761gxdk_config {
|
||||
struct mainboard_config {
|
||||
};
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_gigabyte_ga_2761gxdk_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("GIGABYTE GA-2761GXDK Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -19,9 +19,9 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_gigabyte_m57sli_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_gigabyte_m57sli_config {
|
||||
struct mainboard_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_gigabyte_m57sli_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("GIGABYTE GA-M57SLI Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_ibm_e325_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_ibm_e325_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_ibm_e325_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IBM eServer 325 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern struct chip_operations mainboard_ibm_e326_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_ibm_e326_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_ibm_e326_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IBM eServer 326 Mainboard")
|
||||
};
|
||||
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_iei_juki_511p_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_iei_juki_511p_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -26,6 +26,6 @@
|
||||
#include <arch/io.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_iei_juki_511p_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IEI JUKI-511P Mainboard")
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_iei_nova4899r_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_iei_nova4899r_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -26,6 +26,6 @@
|
||||
#include <arch/io.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_iei_nova4899r_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IEI NOVA-4899R Mainboard")
|
||||
};
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
extern struct chip_operations mainboard_iei_pcisa_lx_800_r10_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_iei_pcisa_lx_800_r10_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -20,6 +20,6 @@
|
||||
|
||||
#include <device/device.h>
|
||||
|
||||
struct chip_operations mainboard_iei_pcisa_lx_800_r10_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IEI PCISA-LX-800-R10 Mainboard")
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
struct chip_operations mainboard_intel_jarrell_ops;
|
||||
struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_intel_jarrell_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_intel_e7520_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Intel Jarell Mainboard")
|
||||
};
|
||||
|
||||
|
@ -18,8 +18,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
struct chip_operations mainboard_intel_mtarvon_ops;
|
||||
struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_intel_mtarvon_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_intel_mtarvon_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Intel Mt. Arvon Mainboard")
|
||||
};
|
||||
|
||||
|
@ -18,8 +18,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
struct chip_operations mainboard_intel_truxton_ops;
|
||||
struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_intel_truxton_config {
|
||||
struct mainboard_config {
|
||||
int nothing;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_intel_truxton_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Intel Truxton Mainboard")
|
||||
};
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
extern unsigned char _vgarom_start[];
|
||||
|
||||
extern struct chip_operations mainboard_intel_xe7501devkit_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_intel_xe7501devkit_config {
|
||||
struct mainboard_config {
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_intel_xe7501devkit_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("Intel Xeon E7501 DevKit Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
@ -1,6 +1,6 @@
|
||||
extern struct chip_operations mainboard_iwill_dk8_htx_ops;
|
||||
extern struct chip_operations mainboard_ops;
|
||||
|
||||
struct mainboard_iwill_dk8_htx_config {
|
||||
struct mainboard_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "chip.h"
|
||||
|
||||
#if CONFIG_CHIP_NAME == 1
|
||||
struct chip_operations mainboard_iwill_dk8_htx_ops = {
|
||||
struct chip_operations mainboard_ops = {
|
||||
CHIP_NAME("IWILL DK8-HTX Mainboard")
|
||||
};
|
||||
#endif
|
||||
|
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