diff options
-rw-r--r-- | sys/arch/amiga/include/conf.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/arch/amiga/include/conf.h b/sys/arch/amiga/include/conf.h index 7b30465951b..71b3affa8ad 100644 --- a/sys/arch/amiga/include/conf.h +++ b/sys/arch/amiga/include/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.3 1996/05/07 10:12:22 niklas Exp $ */ +/* $OpenBSD: conf.h,v 1.4 1996/08/23 18:38:48 niklas Exp $ */ /* $NetBSD: conf.h,v 1.1 1996/04/21 21:13:16 veego Exp $ */ /* @@ -30,6 +30,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +bdev_decl(acd); +cdev_decl(acd); + cdev_decl(com); cdev_decl(ctty); @@ -59,13 +62,23 @@ cdev_decl(msc); cdev_decl(par); +bdev_decl(rd); +/* no cdev for rd */ + +cdev_decl(rnd); + cdev_decl(ser); bdev_decl(sw); cdev_decl(sw); +cdev_decl(uk); + cdev_decl(view); +bdev_decl(wd); +cdev_decl(wd); + /* open, close, ioctl, select, mmap -- XXX should be a map device */ #define cdev_grf_init(c,n) { \ dev_init(c,n,open), dev_init(c,n,close), (dev_type_read((*))) nullop, \ |