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/octeon | |
parent | b49fd163e0e54e305c939b9fdf8378923d8401f2 (diff) |
Add pppx(4) to the cdevs of the remaining archs.
OK dlg@
Diffstat (limited to 'sys/arch/octeon')
-rw-r--r-- | sys/arch/octeon/octeon/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/octeon/octeon/conf.c b/sys/arch/octeon/octeon/conf.c index e65bd10ca63..ad293fdf653 100644 --- a/sys/arch/octeon/octeon/conf.c +++ b/sys/arch/octeon/octeon/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.1 2010/09/20 06:32:30 syuu Exp $ */ +/* $OpenBSD: conf.c,v 1.2 2010/09/23 05:02:14 claudio Exp $ */ /* * Copyright (c) 1992, 1993 @@ -135,6 +135,7 @@ cdev_decl(pci); #include "bthub.h" #include "vscsi.h" +#include "pppx.h" struct cdevsw cdevsw[] = { @@ -221,6 +222,7 @@ struct cdevsw cdevsw[] = cdev_bthub_init(NBTHUB,bthub), /* 68: bluetooth hub */ cdev_vscsi_init(NVSCSI,vscsi), /* 69: vscsi */ cdev_disk_init(1,diskmap), /* 70: disk mapper */ + cdev_pppx_init(NPPPX,pppx), /* 71: pppx */ }; int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]); |