Commit 1b62d258 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: yurex: assign a real minor number to the driver

This assigns the minor number 192 to the yurex driver.

We also fix up the previous usb minor number entry, it was wrong.

Cc: Tomoki Sekiyama <tomoki.sekiyama@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6bc235a2
...@@ -2553,7 +2553,10 @@ Your cooperation is appreciated. ...@@ -2553,7 +2553,10 @@ Your cooperation is appreciated.
175 = /dev/usb/legousbtower15 16th USB Legotower device 175 = /dev/usb/legousbtower15 16th USB Legotower device
176 = /dev/usb/usbtmc1 First USB TMC device 176 = /dev/usb/usbtmc1 First USB TMC device
... ...
192 = /dev/usb/usbtmc16 16th USB TMC device 191 = /dev/usb/usbtmc16 16th USB TMC device
192 = /dev/usb/yurex1 First USB Yurex device
...
209 = /dev/usb/yurex16 16th USB Yurex device
240 = /dev/usb/dabusb0 First daubusb device 240 = /dev/usb/dabusb0 First daubusb device
... ...
243 = /dev/usb/dabusb3 Fourth dabusb device 243 = /dev/usb/dabusb3 Fourth dabusb device
......
...@@ -47,9 +47,9 @@ static struct usb_device_id yurex_table[] = { ...@@ -47,9 +47,9 @@ static struct usb_device_id yurex_table[] = {
MODULE_DEVICE_TABLE(usb, yurex_table); MODULE_DEVICE_TABLE(usb, yurex_table);
#ifdef CONFIG_USB_DYNAMIC_MINORS #ifdef CONFIG_USB_DYNAMIC_MINORS
#define YUREX_MINOR_BASE 0 #define YUREX_MINOR_BASE 0
#else #else
#define YUREX_MINOR_BASE 224 /* not official yet */ #define YUREX_MINOR_BASE 192
#endif #endif
/* Structure to hold all of our device specific stuff */ /* Structure to hold all of our device specific stuff */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment