mirror of https://gitee.com/openkylin/linux.git
[PATCH] USB: fix AIPTEK input doesn`t register `device` & `driver` section in sysfs (/sys/class/input/event#)
PROBLEM: aiptek input doesn`t register `device` & `driver` section in sysfs (/sys/class/input/event#) REASON: `dev` - field not filled... SOLUTION: in linux/drivers/usb/input/aiptek.c write aiptek->inputdev.dev = &intf->dev; before calling input_register_device(&aiptek->inputdev); From: "Viktor A. Danilov" <__die@mail.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Index: gregkh-2.6/drivers/usb/input/aiptek.c ===================================================================
This commit is contained in:
parent
6cdee106e7
commit
e838a0d4d5
|
@ -2138,6 +2138,7 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
|||
aiptek->inputdev.id.vendor = le16_to_cpu(usbdev->descriptor.idVendor);
|
||||
aiptek->inputdev.id.product = le16_to_cpu(usbdev->descriptor.idProduct);
|
||||
aiptek->inputdev.id.version = le16_to_cpu(usbdev->descriptor.bcdDevice);
|
||||
aiptek->inputdev.dev = &intf->dev;
|
||||
|
||||
aiptek->usbdev = usbdev;
|
||||
aiptek->ifnum = intf->altsetting[0].desc.bInterfaceNumber;
|
||||
|
|
Loading…
Reference in New Issue