diff options
| author | Nick Hibma <n_hibma@FreeBSD.org> | 2001-02-19 18:14:49 +0000 |
|---|---|---|
| committer | Nick Hibma <n_hibma@FreeBSD.org> | 2001-02-19 18:14:49 +0000 |
| commit | cf4bfc5243b61eb1858e7e6b1c05aab3367304d5 (patch) | |
| tree | 089b436651a1f9c4943ce84f4d689af2ab1abc07 | |
| parent | 0ca9484af4fa80b95c17506b537a6aeb6b5ee7f9 (diff) | |
Notes
| -rw-r--r-- | sys/dev/usb/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 46f1eb1fdfcc..f917d1f18504 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -261,11 +261,11 @@ USB_ATTACH(usb) #if defined(__FreeBSD__) /* The per controller devices (used for usb_discover) */ make_dev(&usb_cdevsw, device_get_unit(self), UID_ROOT, GID_OPERATOR, - 0644, "usb%d", device_get_unit(self)); + 0660, "usb%d", device_get_unit(self)); if (!global_init_done) { /* The device spitting out events */ make_dev(&usb_cdevsw, USB_DEV_MINOR, UID_ROOT, GID_OPERATOR, - 0644, "usb"); + 0660, "usb"); global_init_done = 1; } #endif |
