blob: 17c56e2af1cf434944485e08d0c78c1be2bb8b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $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_ */
|