31e40c8ce1
MIPS32 4Kc CPU board, with support for the MIPS64 5Kc and the QED RM5261 CPU boards to follow. The cs4281 audio hasn't been tested, there are some interrupt problems with onboard the pciide, but all other on-board peripherals work. The evbmips port will support more MIPS evaluation boards in the future.
16 lines
283 B
C
16 lines
283 B
C
/* $NetBSD: gtvar.h,v 1.1 2002/03/07 14:44:05 simonb Exp $ */
|
|
|
|
#ifndef _MALTA_GTVAR_H_
|
|
#define _MALTA_GTVAR_H_
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
struct gt_config {
|
|
int foo;
|
|
};
|
|
|
|
#ifdef _KERNEL
|
|
void gt_pci_init(pci_chipset_tag_t, struct gt_config *);
|
|
#endif
|
|
#endif /* !_MALTA_GTVAR_H_ */
|