Skip to content

Commit

Permalink
HID: core: simplify active collection tracking
Browse files Browse the repository at this point in the history
Manually tracking an active collection to set collection parents is not
necessary, we just have to look one step back into the collection stack
to find the correct parent.

Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
  • Loading branch information
Philipp Zabel authored and Benjamin Tissoires committed Jan 16, 2019
1 parent 77ae0d8 commit 1950f46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
13 changes: 2 additions & 11 deletions drivers/hid/hid-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ static int open_collection(struct hid_parser *parser, unsigned type)
collection->type = type;
collection->usage = usage;
collection->level = parser->collection_stack_ptr - 1;
collection->parent_idx = parser->active_collection_idx;
parser->active_collection_idx = collection_index;
collection->parent_idx = (collection->level == 0) ? -1 :
parser->collection_stack[collection->level - 1];

if (type == HID_COLLECTION_APPLICATION)
parser->device->maxapplication++;
Expand All @@ -193,13 +193,6 @@ static int close_collection(struct hid_parser *parser)
return -EINVAL;
}
parser->collection_stack_ptr--;
if (parser->active_collection_idx != -1) {
struct hid_device *device = parser->device;
struct hid_collection *c;

c = &device->collection[parser->active_collection_idx];
parser->active_collection_idx = c->parent_idx;
}
return 0;
}

Expand Down Expand Up @@ -825,7 +818,6 @@ static int hid_scan_report(struct hid_device *hid)
return -ENOMEM;

parser->device = hid;
parser->active_collection_idx = -1;
hid->group = HID_GROUP_GENERIC;

/*
Expand Down Expand Up @@ -1179,7 +1171,6 @@ int hid_open_report(struct hid_device *device)
}

parser->device = device;
parser->active_collection_idx = -1;

end = start + size;

Expand Down
1 change: 0 additions & 1 deletion include/linux/hid.h
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,6 @@ struct hid_parser {
unsigned int *collection_stack;
unsigned int collection_stack_ptr;
unsigned int collection_stack_size;
int active_collection_idx; /* device->collection */
struct hid_device *device;
unsigned int scan_flags;
};
Expand Down

0 comments on commit 1950f46

Please sign in to comment.