mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
Input: wacom - don't use on-stack memory for report buffers
Tested-by: Martin Capitanio <martin@capitanio.org> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
68947b8f9a
commit
3b7307c2d6
@ -388,6 +388,32 @@ static int wacom_parse_hid(struct usb_interface *intf, struct hid_descriptor *hi
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int wacom_query_tablet_data(struct usb_interface *intf)
|
||||||
|
{
|
||||||
|
unsigned char *rep_data;
|
||||||
|
int limit = 0;
|
||||||
|
int error;
|
||||||
|
|
||||||
|
rep_data = kmalloc(2, GFP_KERNEL);
|
||||||
|
if (!rep_data)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
do {
|
||||||
|
rep_data[0] = 2;
|
||||||
|
rep_data[1] = 2;
|
||||||
|
error = usb_set_report(intf, WAC_HID_FEATURE_REPORT,
|
||||||
|
2, rep_data, 2);
|
||||||
|
if (error >= 0)
|
||||||
|
error = usb_get_report(intf,
|
||||||
|
WAC_HID_FEATURE_REPORT, 2,
|
||||||
|
rep_data, 2);
|
||||||
|
} while ((error < 0 || rep_data[1] != 2) && limit++ < 5);
|
||||||
|
|
||||||
|
kfree(rep_data);
|
||||||
|
|
||||||
|
return error < 0 ? error : 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
||||||
{
|
{
|
||||||
struct usb_device *dev = interface_to_usbdev(intf);
|
struct usb_device *dev = interface_to_usbdev(intf);
|
||||||
@ -398,7 +424,6 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
|
|||||||
struct wacom_features *features;
|
struct wacom_features *features;
|
||||||
struct input_dev *input_dev;
|
struct input_dev *input_dev;
|
||||||
int error = -ENOMEM;
|
int error = -ENOMEM;
|
||||||
char rep_data[2], limit = 0;
|
|
||||||
struct hid_descriptor *hid_desc;
|
struct hid_descriptor *hid_desc;
|
||||||
|
|
||||||
wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
|
wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
|
||||||
@ -489,20 +514,10 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Ask the tablet to report tablet data if it is not a Tablet PC.
|
* Ask the tablet to report tablet data if it is not a Tablet PC.
|
||||||
* Repeat until it succeeds
|
* Note that if query fails it is not a hard failure.
|
||||||
*/
|
*/
|
||||||
if (wacom_wac->features->type != TABLETPC) {
|
if (wacom_wac->features->type != TABLETPC)
|
||||||
do {
|
wacom_query_tablet_data(intf);
|
||||||
rep_data[0] = 2;
|
|
||||||
rep_data[1] = 2;
|
|
||||||
error = usb_set_report(intf, WAC_HID_FEATURE_REPORT,
|
|
||||||
2, rep_data, 2);
|
|
||||||
if (error >= 0)
|
|
||||||
error = usb_get_report(intf,
|
|
||||||
WAC_HID_FEATURE_REPORT, 2,
|
|
||||||
rep_data, 2);
|
|
||||||
} while ((error < 0 || rep_data[1] != 2) && limit++ < 5);
|
|
||||||
}
|
|
||||||
|
|
||||||
usb_set_intfdata(intf, wacom);
|
usb_set_intfdata(intf, wacom);
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user