diff options
author | Jiri Kosina <jkosina@suse.cz> | 2010-10-23 16:49:32 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-10-23 16:49:32 -0400 |
commit | 8b66a16f25f819bb1f132f075c5c01a288776cf8 (patch) | |
tree | ff6e16818194aca66d8ea34f9765067b2a82020a /drivers/hid/hid-sony.c | |
parent | bbd128b5acae85b2ef346e95cc5a729ac5252f19 (diff) | |
parent | 41fa92302be7fa37c5c38e17e2097d3e5e9da13a (diff) |
Merge branch 'uc-logic' into for-linus
Conflicts:
drivers/hid/hid-ids.h
drivers/hid/hid-lg.c
drivers/hid/usbhid/hid-quirks.c
Diffstat (limited to 'drivers/hid/hid-sony.c')
-rw-r--r-- | drivers/hid/hid-sony.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c index 0c164b3dce3a..677bb3da10e8 100644 --- a/drivers/hid/hid-sony.c +++ b/drivers/hid/hid-sony.c | |||
@@ -33,17 +33,18 @@ struct sony_sc { | |||
33 | }; | 33 | }; |
34 | 34 | ||
35 | /* Sony Vaio VGX has wrongly mouse pointer declared as constant */ | 35 | /* Sony Vaio VGX has wrongly mouse pointer declared as constant */ |
36 | static void sony_report_fixup(struct hid_device *hdev, __u8 *rdesc, | 36 | static __u8 *sony_report_fixup(struct hid_device *hdev, __u8 *rdesc, |
37 | unsigned int rsize) | 37 | unsigned int *rsize) |
38 | { | 38 | { |
39 | struct sony_sc *sc = hid_get_drvdata(hdev); | 39 | struct sony_sc *sc = hid_get_drvdata(hdev); |
40 | 40 | ||
41 | if ((sc->quirks & VAIO_RDESC_CONSTANT) && | 41 | if ((sc->quirks & VAIO_RDESC_CONSTANT) && |
42 | rsize >= 56 && rdesc[54] == 0x81 && rdesc[55] == 0x07) { | 42 | *rsize >= 56 && rdesc[54] == 0x81 && rdesc[55] == 0x07) { |
43 | dev_info(&hdev->dev, "Fixing up Sony Vaio VGX report " | 43 | dev_info(&hdev->dev, "Fixing up Sony Vaio VGX report " |
44 | "descriptor\n"); | 44 | "descriptor\n"); |
45 | rdesc[55] = 0x06; | 45 | rdesc[55] = 0x06; |
46 | } | 46 | } |
47 | return rdesc; | ||
47 | } | 48 | } |
48 | 49 | ||
49 | static int sixaxis_usb_output_raw_report(struct hid_device *hid, __u8 *buf, | 50 | static int sixaxis_usb_output_raw_report(struct hid_device *hid, __u8 *buf, |