diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-06-09 15:25:34 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-06-09 15:25:34 +0000 |
commit | e296f61b1a4136c8060a582f4eae13f6f1f44d86 (patch) | |
tree | 14f7adb9ad99d715ffba17952fe5fafcb32e2ca9 /sys/arch/socppc | |
parent | 5381122906bf88c5fd4bc51d07e075e9ddc41e0b (diff) |
Wire up device nodes for disk mapper.
ok deraadt@
Diffstat (limited to 'sys/arch/socppc')
-rw-r--r-- | sys/arch/socppc/socppc/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/socppc/socppc/conf.c b/sys/arch/socppc/socppc/conf.c index 2ea6c23622e..11be6ebbcb5 100644 --- a/sys/arch/socppc/socppc/conf.c +++ b/sys/arch/socppc/socppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.9 2010/03/31 16:33:08 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.10 2010/06/09 15:25:33 jsing Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -203,6 +203,7 @@ struct cdevsw cdevsw[] = { cdev_notdef(), /* 79 */ cdev_notdef(), /* 80 */ cdev_bthub_init(NBTHUB,bthub), /* 81: bluetooth hub */ + cdev_disk_init(1,diskmap), /* 82: disk mapper */ }; int nchrdev = sizeof cdevsw / sizeof cdevsw[0]; |