diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-03 17:33:59 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-03 17:33:59 +0000 |
commit | 2b3bd040642091f1e944e1e5253e82386f32adf2 (patch) | |
tree | 04d7a9f76fdb6477e789fe21da26528f61aff151 /sys/arch/arm | |
parent | ee63abf0b38af071a16e26df8f4b7d252c51ce81 (diff) |
more fuse in more places. credit: miod
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/arm/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/arm/arm/conf.c b/sys/arch/arm/arm/conf.c index 98e24c7c3d2..cfadb9d09fe 100644 --- a/sys/arch/arm/arm/conf.c +++ b/sys/arch/arm/arm/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.34 2013/03/15 09:10:52 ratchov Exp $ */ +/* $OpenBSD: conf.c,v 1.35 2013/06/03 17:33:58 tedu Exp $ */ /* $NetBSD: conf.c,v 1.10 2002/04/19 01:04:38 wiz Exp $ */ /* @@ -267,6 +267,7 @@ struct bdevsw bdevsw[] = { #include "hotplug.h" #include "vscsi.h" #include "pppx.h" +#include "fuse.h" #ifdef CONF_HAVE_GPIO #include "gpio.h" @@ -358,7 +359,7 @@ struct cdevsw cdevsw[] = { cdev_lkm_dummy(), /* 74: reserved */ cdev_lkm_dummy(), /* 75: reserved */ cdev_lkm_dummy(), /* 76: reserved */ - cdev_notdef(), /* 77: removed device */ + cdev_fuse_init(NFUSE,fuse), /* 77: fuse */ cdev_notdef(), /* 78: removed device */ cdev_notdef(), /* 79: removed device */ cdev_notdef(), /* 80: removed device */ |