On Sun, 10 Apr 2011, GLENN S wrote: > 2011-04-10T16:26:47.917428-07:00 localhost kernel: [ 178.916844] usb > 1-3: New USB device found, idVendor=0bda, idProduct=0138 > 2011-04-10T16:26:47.917500-07:00 localhost kernel: [ 178.916863] usb > 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 > 2011-04-10T16:26:47.917533-07:00 localhost kernel: [ 178.916878] usb > 1-3: Product: USB2.0-CRW > 2011-04-10T16:26:47.917559-07:00 localhost kernel: [ 178.916888] usb > 1-3: Manufacturer: Generic > 2011-04-10T16:26:47.917584-07:00 localhost kernel: [ 178.916899] usb > 1-3: SerialNumber: 20090516388200000 > 2011-04-10T16:26:47.917609-07:00 localhost kernel: [ 178.917321] usb > 1-3: configuration #1 chosen from 1 choice > 2011-04-10T16:26:47.928222-07:00 localhost kernel: [ 178.927730] > usb-storage: This device (0bda,0138,3882 S 06 P 50) has an unneeded > SubClass entry in unusual_devs.h (kernel 2.6.32.26+drm33.12) > 2011-04-10T16:26:47.928273-07:00 localhost kernel: [ 178.927738] > Please send a copy of this message to <linux-usb@xxxxxxxxxxxxxxx> and > <usb-storage@xxxxxxxxxxxxxxxxxxxxxxxx> Thank you for sending this. Does the patch below eliminate this message? Alan Stern Index: usb-2.6/drivers/usb/storage/unusual_realtek.h =================================================================== --- usb-2.6.orig/drivers/usb/storage/unusual_realtek.h +++ usb-2.6/drivers/usb/storage/unusual_realtek.h @@ -23,19 +23,19 @@ #if defined(CONFIG_USB_STORAGE_REALTEK) || \ defined(CONFIG_USB_STORAGE_REALTEK_MODULE) -UNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999, +UNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999, "Realtek", "USB Card Reader", - USB_SC_SCSI, USB_PR_BULK, init_realtek_cr, 0), + USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0), UNUSUAL_DEV(0x0bda, 0x0158, 0x0000, 0x9999, "Realtek", "USB Card Reader", - USB_SC_SCSI, USB_PR_BULK, init_realtek_cr, 0), + USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0), -UNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999, +UNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999, "Realtek", "USB Card Reader", - USB_SC_SCSI, USB_PR_BULK, init_realtek_cr, 0), + USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0), #endif /* defined(CONFIG_USB_STORAGE_REALTEK) || ... */ -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html