summaryrefslogtreecommitdiff
path: root/sys/arch/socppc
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2010-09-23 05:02:15 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2010-09-23 05:02:15 +0000
commitf66d54f42dbef212c533b94dc8d95b0cf9b20bc9 (patch)
tree952dcc04429b9f3c00a4bbea7f9247f1cd7c3189 /sys/arch/socppc
parentb49fd163e0e54e305c939b9fdf8378923d8401f2 (diff)
Add pppx(4) to the cdevs of the remaining archs.
OK dlg@
Diffstat (limited to 'sys/arch/socppc')
-rw-r--r--sys/arch/socppc/socppc/conf.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/socppc/socppc/conf.c b/sys/arch/socppc/socppc/conf.c
index 11be6ebbcb5..b983c485bb2 100644
--- a/sys/arch/socppc/socppc/conf.c
+++ b/sys/arch/socppc/socppc/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.10 2010/06/09 15:25:33 jsing Exp $ */
+/* $OpenBSD: conf.c,v 1.11 2010/09/23 05:02:14 claudio Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -110,9 +110,9 @@ cdev_decl(pci);
#include "usb.h"
#include "uhid.h"
-#include "vscsi.h"
-
#include "bthub.h"
+#include "vscsi.h"
+#include "pppx.h"
struct cdevsw cdevsw[] = {
cdev_cn_init(1,cn), /* 0: virtual console */
@@ -204,6 +204,7 @@ struct cdevsw cdevsw[] = {
cdev_notdef(), /* 80 */
cdev_bthub_init(NBTHUB,bthub), /* 81: bluetooth hub */
cdev_disk_init(1,diskmap), /* 82: disk mapper */
+ cdev_pppx_init(NPPPX,pppx), /* 83: pppx */
};
int nchrdev = sizeof cdevsw / sizeof cdevsw[0];