Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / acorn32 / eb7500atx / rsbus.h
blobf8b6a2d065b19434e25bbe4eeba62ecea47fcf74
1 /* $NetBSD: rsbus.h,v 1.1.4.3 2004/09/21 13:11:27 skrll Exp $ */
3 #ifndef _RSBUS_H_
4 #define _RSBUS_H_
6 #include <sys/conf.h>
7 #include <sys/device.h>
8 #include <sys/queue.h>
10 #include <machine/bus.h>
12 struct rsbus_softc {
13 struct device sc_dev;
14 bus_space_tag_t sc_iot;
15 bus_space_handle_t sc_ioh;
18 struct rsbus_attach_args {
19 bus_space_tag_t sa_iot; /* Bus tag */
20 bus_addr_t sa_addr; /* i/o address */
21 bus_size_t sa_size;
22 int sa_intr;
25 #endif /* _RSBUS_H_ */