From 9df97b6d1e253beb4fd91c3dbfc8f80381178107 Mon Sep 17 00:00:00 2001 From: grog Date: Wed, 1 Aug 2001 04:35:28 +0000 Subject: open_device: Recognize ar device. Submitted by: Valery Kotchiev --- sys/dev/vinum/vinumio.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys') diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c index 579e3cc..564d21c 100644 --- a/sys/dev/vinum/vinumio.c +++ b/sys/dev/vinum/vinumio.c @@ -84,6 +84,8 @@ open_drive(struct drive *drive, struct proc *p, int verbose) devmajor = 43; else if (bcmp(dname, "md", 2) == 0) devmajor = 95; + else if (bcmp(dname, "ar", 2) == 0) + devmajor = 157; else if (bcmp(dname, "amrd", 4) == 0) { devmajor = 133; dname += 2; -- cgit v1.1