Home | History | Annotate | Line # | Download | only in include
bus.h revision 1.2
      1 /* $NetBSD: bus.h,v 1.2 2012/05/07 18:16:38 tsutsui Exp $ */
      2 
      3 /*
      4  * XXX: A dummy <machine/bus.h> for MI <sys/bus.h>.
      5  */
      6 
      7 #ifndef _MACHINE_BUS_H_
      8 #define	_MACHINE_BUS_H_
      9 
     10 typedef paddr_t	bus_addr_t;
     11 typedef psize_t	bus_size_t;
     12 
     13 typedef int     bus_space_tag_t;
     14 typedef int     bus_space_handle_t;
     15 
     16 /*
     17  * There is no bus_dma(9)'fied bus drivers on this port.
     18  */
     19 #define __HAVE_NO_BUS_DMA
     20 
     21 #endif /* _MACHINE_BUS_H_ */
     22