diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-03 16:48:03 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-03 16:48:03 +0000 |
commit | ea1bd971b492ea9b48b61920cb30a83763fd546d (patch) | |
tree | 5014506eaa2981651c8c8666bb9a0c61996c31e4 /sys/dev/usb/ums.c | |
parent | 9ace34cb3e39645052a5a1906c73be0736836c52 (diff) | |
download | FreeBSD-src-ea1bd971b492ea9b48b61920cb30a83763fd546d.zip FreeBSD-src-ea1bd971b492ea9b48b61920cb30a83763fd546d.tar.gz |
Corrected the major number for usb and added ums as major 111
Diffstat (limited to 'sys/dev/usb/ums.c')
-rw-r--r-- | sys/dev/usb/ums.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ums.c b/sys/dev/usb/ums.c index 0824d40..19aee47 100644 --- a/sys/dev/usb/ums.c +++ b/sys/dev/usb/ums.c @@ -1,5 +1,5 @@ /* $NetBSD: ums.c,v 1.8 1998/08/01 20:11:39 augustss Exp $ */ -/* FreeBSD $Id$ */ +/* FreeBSD $Id: ums.c,v 1.3 1998/12/14 09:32:24 n_hibma Exp $ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -158,7 +158,7 @@ static d_read_t ums_read; static d_ioctl_t ums_ioctl; static d_poll_t ums_poll; -#define UMS_CDEV_MAJOR 138 /* XXX NWH should be requested */ +#define UMS_CDEV_MAJOR 111 static struct cdevsw ums_cdevsw = { ums_open, ums_close, ums_read, nowrite, |