|
@@ -783,7 +783,9 @@ static int hid_scan_report(struct hid_device *hid)
|
|
|
* Vendor specific handlings
|
|
|
*/
|
|
|
if ((hid->vendor == USB_VENDOR_ID_SYNAPTICS) &&
|
|
|
- (hid->group == HID_GROUP_GENERIC))
|
|
|
+ (hid->group == HID_GROUP_GENERIC) &&
|
|
|
+ /* only bind to the mouse interface of composite USB devices */
|
|
|
+ (hid->bus != BUS_USB || hid->type == HID_TYPE_USBMOUSE))
|
|
|
/* hid-rmi should take care of them, not hid-generic */
|
|
|
hid->group = HID_GROUP_RMI;
|
|
|
|