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/luna88k | |
parent | b49fd163e0e54e305c939b9fdf8378923d8401f2 (diff) |
Add pppx(4) to the cdevs of the remaining archs.
OK dlg@
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r-- | sys/arch/luna88k/luna88k/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/luna88k/luna88k/conf.c b/sys/arch/luna88k/luna88k/conf.c index cb043cb20ad..e87f76779f4 100644 --- a/sys/arch/luna88k/luna88k/conf.c +++ b/sys/arch/luna88k/luna88k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.14 2010/07/03 03:59:16 krw Exp $ */ +/* $OpenBSD: conf.c,v 1.15 2010/09/23 05:02:14 claudio Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -70,6 +70,7 @@ cdev_decl(nnpfs_dev); #include "pf.h" #include "systrace.h" #include "vscsi.h" +#include "pppx.h" struct bdevsw bdevsw[] = { @@ -158,6 +159,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]); |