Skip to content

Commit

Permalink
Merge pull request #2 from AndDiSa/ads-7.1.0
Browse files Browse the repository at this point in the history
Merge AndDiSa Kernel
  • Loading branch information
AICProcks authored May 20, 2018
2 parents ab79cc1 + 66c074f commit 826ec1b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/input/tablet/gtco.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,22 +232,22 @@ static void parse_hid_report_descriptor(struct gtco *device, char * report,

/* Walk this report and pull out the info we need */
while (i < length) {
prefix = report[i];

/* Skip over prefix */
i++;
prefix = report[i++];

/* Determine data size and save the data in the proper variable */
size = PREF_SIZE(prefix);
size = (1U << PREF_SIZE(prefix)) >> 1;
if (i + size > length) {
break;
}

switch (size) {
case 1:
data = report[i];
break;
case 2:
data16 = get_unaligned_le16(&report[i]);
break;
case 3:
size = 4;
case 4:
data32 = get_unaligned_le32(&report[i]);
break;
}
Expand Down

0 comments on commit 826ec1b

Please sign in to comment.