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: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/drivers/usb/misc/yurex.c b/drivers/usb/misc/yurex.c
index 76b8ab4..5f6443b 100644
--- a/drivers/usb/misc/yurex.c
+++ b/drivers/usb/misc/yurex.c
@@ -47,9 +47,9 @@
 MODULE_DEVICE_TABLE(usb, yurex_table);
 
 #ifdef CONFIG_USB_DYNAMIC_MINORS
-#define YUREX_MINOR_BASE       0
+#define YUREX_MINOR_BASE	0
 #else
-#define YUREX_MINOR_BASE       224  /* not official yet */
+#define YUREX_MINOR_BASE	192
 #endif
 
 /* Structure to hold all of our device specific stuff */