diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-23 05:02:15 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-23 05:02:15 +0000 |
commit | f66d54f42dbef212c533b94dc8d95b0cf9b20bc9 (patch) | |
tree | 952dcc04429b9f3c00a4bbea7f9247f1cd7c3189 /sys/arch/aviion | |
parent | b49fd163e0e54e305c939b9fdf8378923d8401f2 (diff) |
Add pppx(4) to the cdevs of the remaining archs.
OK dlg@
Diffstat (limited to 'sys/arch/aviion')
-rw-r--r-- | sys/arch/aviion/aviion/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/aviion/aviion/conf.c b/sys/arch/aviion/aviion/conf.c index 7f9b6dcb2c5..dcd67cbb2fd 100644 --- a/sys/arch/aviion/aviion/conf.c +++ b/sys/arch/aviion/aviion/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.11 2010/07/03 03:59:16 krw Exp $ */ +/* $OpenBSD: conf.c,v 1.12 2010/09/23 05:02:14 claudio Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -59,6 +59,7 @@ #include "vme.h" #include "vnd.h" #include "vscsi.h" +#include "pppx.h" #ifdef NNPFS #include <nnpfs/nnnpfs.h> cdev_decl(nnpfs_dev); @@ -149,6 +150,7 @@ struct cdevsw cdevsw[] = cdev_ptm_init(NPTY,ptm), /* 52: pseudo-tty ptm device */ cdev_vscsi_init(NVSCSI,vscsi), /* 53: vscsi */ cdev_disk_init(1,diskmap), /* 54: disk mapper */ + cdev_pppx_init(NPPPX,pppx), /* 55: pppx */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |