diff options
author | Jiri Kosina <jkosina@suse.cz> | 2017-11-15 05:08:23 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-11-15 05:08:23 -0500 |
commit | 6101cb7ea26efd4b6b4f15b4db707bb097cf97eb (patch) | |
tree | 1a81fa31a6e956d192176ffc10d3c6170bf6ba95 | |
parent | e1548dcd21ffe4121648ca2287e2a65e40110cfc (diff) | |
parent | 6cb6d98abdb06de867e34fde92912fdb89477897 (diff) |
Merge branch 'for-4.15/logitech' into for-linus
- small code fixes for Logitech driver from Colin Ian King
-rw-r--r-- | drivers/hid/hid-lg.c | 4 | ||||
-rw-r--r-- | drivers/hid/hid-lg4ff.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hid/hid-lg.c b/drivers/hid/hid-lg.c index 52026dc94d5c..596227ddb6e0 100644 --- a/drivers/hid/hid-lg.c +++ b/drivers/hid/hid-lg.c | |||
@@ -756,7 +756,9 @@ static int lg_probe(struct hid_device *hdev, const struct hid_device_id *id) | |||
756 | 756 | ||
757 | /* Setup wireless link with Logitech Wii wheel */ | 757 | /* Setup wireless link with Logitech Wii wheel */ |
758 | if (hdev->product == USB_DEVICE_ID_LOGITECH_WII_WHEEL) { | 758 | if (hdev->product == USB_DEVICE_ID_LOGITECH_WII_WHEEL) { |
759 | const unsigned char cbuf[] = { 0x00, 0xAF, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | 759 | static const unsigned char cbuf[] = { |
760 | 0x00, 0xAF, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
761 | }; | ||
760 | u8 *buf = kmemdup(cbuf, sizeof(cbuf), GFP_KERNEL); | 762 | u8 *buf = kmemdup(cbuf, sizeof(cbuf), GFP_KERNEL); |
761 | 763 | ||
762 | if (!buf) { | 764 | if (!buf) { |
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c index 1fc12e357035..512d67e1aae3 100644 --- a/drivers/hid/hid-lg4ff.c +++ b/drivers/hid/hid-lg4ff.c | |||
@@ -474,9 +474,7 @@ static int lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effec | |||
474 | static void lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude) | 474 | static void lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude) |
475 | { | 475 | { |
476 | struct hid_device *hid = input_get_drvdata(dev); | 476 | struct hid_device *hid = input_get_drvdata(dev); |
477 | struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list; | 477 | s32 *value; |
478 | struct hid_report *report = list_entry(report_list->next, struct hid_report, list); | ||
479 | s32 *value = report->field[0]->value; | ||
480 | u32 expand_a, expand_b; | 478 | u32 expand_a, expand_b; |
481 | struct lg4ff_device_entry *entry; | 479 | struct lg4ff_device_entry *entry; |
482 | struct lg_drv_data *drv_data; | 480 | struct lg_drv_data *drv_data; |