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/landisk | |
parent | b49fd163e0e54e305c939b9fdf8378923d8401f2 (diff) |
Add pppx(4) to the cdevs of the remaining archs.
OK dlg@
Diffstat (limited to 'sys/arch/landisk')
-rw-r--r-- | sys/arch/landisk/landisk/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/landisk/landisk/conf.c b/sys/arch/landisk/landisk/conf.c index 416515022f7..8c23e827a2f 100644 --- a/sys/arch/landisk/landisk/conf.c +++ b/sys/arch/landisk/landisk/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.16 2010/07/03 03:59:16 krw Exp $ */ +/* $OpenBSD: conf.c,v 1.17 2010/09/23 05:02:14 claudio Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -270,6 +270,7 @@ cdev_decl(nnpfs_dev); #include "hotplug.h" #include "scif.h" #include "vscsi.h" +#include "pppx.h" #ifdef CONF_HAVE_GPIO #include "gpio.h" @@ -388,6 +389,7 @@ struct cdevsw cdevsw[] = { cdev_vscsi_init(NVSCSI,vscsi), /* 99: vscsi */ cdev_bthub_init(NBTHUB,bthub), /* 100: bthub */ cdev_disk_init(1,diskmap), /* 101: disk mapper */ + cdev_pppx_init(NPPPX,pppx), /* 102: pppx */ }; int nblkdev = sizeof(bdevsw) / sizeof(bdevsw[0]); |