summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2013-06-03 15:54:49 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2013-06-03 15:54:49 +0000
commit378984635a1cc64b5abdeaf657989badae279f5e (patch)
treed0909e4771ff59c57ec90aa418aa88b6e87c6132 /sys/arch/hppa
parent62a9ebcc8468d105a2771647e78946f73596ac9c (diff)
changes for isc fuse support. not enabled. ok beck deraadt.
from Sylvestre Gallon ccna.syl gmail.com
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/hppa/conf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/hppa/conf.c b/sys/arch/hppa/hppa/conf.c
index cb87d8bd285..d7f0c519236 100644
--- a/sys/arch/hppa/hppa/conf.c
+++ b/sys/arch/hppa/hppa/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.55 2012/08/23 06:12:49 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.56 2013/06/03 15:54:47 tedu Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@@ -120,6 +120,7 @@ cdev_decl(pci);
#include "uscanner.h"
#include "bthub.h"
+#include "fuse.h"
struct cdevsw cdevsw[] =
{
@@ -186,6 +187,7 @@ struct cdevsw cdevsw[] =
cdev_bthub_init(NBTHUB,bthub), /* 55: bthub */
cdev_disk_init(1,diskmap), /* 56: disk mapper */
cdev_pppx_init(NPPPX,pppx), /* 57: pppx */
+ cdev_fuse_init(NFUSE,fuse), /* 58: fuse */
};
int nchrdev = nitems(cdevsw);