Home | History | Annotate | Line # | Download | only in eb7500atx
      1 /* $NetBSD: rsbus.h,v 1.4 2012/10/27 17:17:23 chs Exp $ */
      2 
      3 #ifndef _RSBUS_H_
      4 #define _RSBUS_H_
      5 
      6 #include <sys/conf.h>
      7 #include <sys/device.h>
      8 #include <sys/queue.h>
      9 #include <sys/bus.h>
     10 
     11 struct rsbus_softc {
     12 	bus_space_tag_t sc_iot;
     13 	bus_space_handle_t sc_ioh;
     14 };
     15 
     16 struct rsbus_attach_args {
     17 	bus_space_tag_t		sa_iot;		/* Bus tag */
     18 	bus_addr_t		sa_addr;	/* i/o address  */
     19 	bus_size_t		sa_size;
     20 	int			sa_intr;
     21 };
     22 
     23 #endif /* _RSBUS_H_ */
     24