diff options
author | Daniel M. Lambea <dmlambea@gmail.com> | 2018-07-17 22:35:36 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2018-07-23 11:35:05 +0200 |
commit | 1a8861f117608e269647fb09658ce77bd5899d42 (patch) | |
tree | 6ebd9e26f1bd3278c19f22f45ea96dcc6ff24153 /include | |
parent | 092150a25cb7bd6a79aa00bb1ad131063f58073d (diff) | |
download | linux-1a8861f117608e269647fb09658ce77bd5899d42.tar.gz linux-1a8861f117608e269647fb09658ce77bd5899d42.tar.bz2 linux-1a8861f117608e269647fb09658ce77bd5899d42.zip |
HID: cougar: make compare_device_paths reusable
The function compare_device_paths from wacom_sys.c is generic
and useful for other drivers. Move the function to hid-core and
rename it as hid_compare_device_paths.
Signed-off-by: Daniel M. Lambea <dmlambea@gmail.com>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/hid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h index 773bcb1d4044..938d9ba6d7cd 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -894,6 +894,8 @@ const struct hid_device_id *hid_match_id(const struct hid_device *hdev, const struct hid_device_id *id); const struct hid_device_id *hid_match_device(struct hid_device *hdev, struct hid_driver *hdrv); +bool hid_compare_device_paths(struct hid_device *hdev_a, + struct hid_device *hdev_b, char separator); s32 hid_snto32(__u32 value, unsigned n); __u32 hid_field_extract(const struct hid_device *hid, __u8 *report, unsigned offset, unsigned n); |