- Make all ports use config.h for if they have chip_config or chip_info structures.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1684 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
92986807bb
commit
858ac5c5cd
|
@ -1,4 +1,4 @@
|
|||
config i82801dbm.h
|
||||
config chip.h
|
||||
driver i82801dbm.o
|
||||
driver i82801dbm_usb.o
|
||||
driver i82801dbm_lpc.o
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef I82801DBM_CHIP_H
|
||||
#define I82801DBM_CHIP_H
|
||||
|
||||
struct southbridge_intel_i82801dbm_config
|
||||
{
|
||||
int enable_usb;
|
||||
int enable_native_ide;
|
||||
};
|
||||
struct chip_operations;
|
||||
extern struct chip_operations southbridge_intel_i82801dbm_ops;
|
||||
|
||||
#endif /* I82801DBM_CHIP_H */
|
|
@ -9,14 +9,7 @@
|
|||
#ifndef I82801DBM_H
|
||||
#define I82801DBM_H
|
||||
|
||||
struct southbridge_intel_i82801dbm_config
|
||||
{
|
||||
int enable_usb;
|
||||
int enable_native_ide;
|
||||
};
|
||||
struct chip_control;
|
||||
extern struct chip_control southbridge_intel_i82801dbm_control;
|
||||
|
||||
#include "chip.h"
|
||||
extern void i82801dbm_enable(device_t dev);
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
config i82801er.h
|
||||
config chip.h
|
||||
driver i82801er.o
|
||||
driver i82801er_usb.o
|
||||
driver i82801er_lpc.o
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef I82801ER_CHIP_H
|
||||
#define I82801ER_CHIP_H
|
||||
|
||||
struct southbridge_intel_i82801er_config
|
||||
{
|
||||
};
|
||||
struct chip_operations;
|
||||
extern struct chip_operations southbridge_intel_i82801er_ops;
|
||||
|
||||
#endif /* I82801ER_CHIP_H */
|
|
@ -1,11 +1,7 @@
|
|||
#ifndef I82801ER_H
|
||||
#define I82801ER_H
|
||||
|
||||
struct southbridge_intel_i82801er_config
|
||||
{
|
||||
};
|
||||
struct chip_control;
|
||||
extern struct chip_control southbridge_intel_i82801er_control;
|
||||
#include "chip.h"
|
||||
|
||||
extern void i82801er_enable(device_t dev);
|
||||
|
||||
|
|
Loading…
Reference in New Issue