moved extern to chip.h
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1046 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b34e7c4077
commit
a1cd3d8290
|
@ -1,2 +1,9 @@
|
||||||
|
#ifndef _SOUTHBRIDGE_WINBOND_W83C553
|
||||||
|
#define _SOUTHBRIDGE_WINBOND_W83C553
|
||||||
|
|
||||||
|
extern struct chip_control southbridge_winbond_w83c553_control;
|
||||||
|
|
||||||
struct southbridge_winbond_w83c553_config {
|
struct southbridge_winbond_w83c553_config {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif /* _SOUTHBRIDGE_WINBOND_W83C553 */
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef _SUPERIO_NSC_PC97307
|
||||||
|
#define _SUPERIO_NSC_PC97307
|
||||||
|
|
||||||
#ifndef PNP_INDEX_REG
|
#ifndef PNP_INDEX_REG
|
||||||
#define PNP_INDEX_REG 0x15C
|
#define PNP_INDEX_REG 0x15C
|
||||||
#endif
|
#endif
|
||||||
|
@ -11,8 +14,11 @@
|
||||||
#define SIO_COM2_BASE 0x2F8
|
#define SIO_COM2_BASE 0x2F8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern struct chip_control superio_NSC_pc97307_control;
|
||||||
|
|
||||||
struct superio_NSC_pc97307_config {
|
struct superio_NSC_pc97307_config {
|
||||||
struct com_ports com1;
|
struct com_ports com1;
|
||||||
struct lpt_ports lpt;
|
struct lpt_ports lpt;
|
||||||
int port;
|
int port;
|
||||||
};
|
};
|
||||||
|
#endif /* _SUPERIO_NSC_PC97307 */
|
||||||
|
|
Loading…
Reference in New Issue