Home | History | Annotate | Line # | Download | only in dev
      1 /*	$NetBSD: gtvar.h,v 1.1 2002/03/07 14:44:05 simonb Exp $	*/
      2 
      3 #ifndef _MALTA_GTVAR_H_
      4 #define	_MALTA_GTVAR_H_
      5 
      6 #include <dev/pci/pcivar.h>
      7 
      8 struct gt_config {
      9 	int foo;
     10 };
     11 
     12 #ifdef _KERNEL
     13 void	gt_pci_init(pci_chipset_tag_t, struct gt_config *);
     14 #endif
     15 #endif /* !_MALTA_GTVAR_H_ */
     16