Home | History | Annotate | Line # | Download | only in jazz
jazziovar.h revision 1.1
      1 #ifndef __JAZZIOVAR_H
      2 #define __JAZZIOVAR_H
      3 
      4 #include <machine/bus.h>
      5 
      6 struct jazzio_attach_args {
      7 	char	*ja_name;
      8 	struct abus *ja_bus;
      9 	bus_space_tag_t	ja_bust;
     10 	bus_dma_tag_t	ja_dmat;
     11 	bus_addr_t	ja_addr;
     12 	int		ja_intr;
     13 	int		ja_dma;
     14 };
     15 
     16 void	jazzio_intr_establish(int, int (*)(void *), void *);
     17 void	jazzio_intr_disestablish(int);
     18 
     19 #endif
     20