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