diff options
author | Bastien Nocera <hadess@hadess.net> | 2022-08-30 16:25:45 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2022-09-07 23:07:49 +0300 |
commit | 80305f97c3a46f8e01c9974b8efc7619a422251c (patch) | |
tree | 3cd3825e2772b0c4bbe0043c6be27033a8150786 /drivers/hid | |
parent | a1f764268f3390406f4dcbe3d2f537f2424f22ca (diff) | |
download | linux-80305f97c3a46f8e01c9974b8efc7619a422251c.tar.xz |
HID: core: Export hid_match_id()
Export hid_match_id() so it can be used in device-specific drivers to
implement their own matching with open-coding a match function.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index b7f5566e338d..72f8d8835b34 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -2088,6 +2088,7 @@ const struct hid_device_id *hid_match_id(const struct hid_device *hdev, return NULL; } +EXPORT_SYMBOL_GPL(hid_match_id); static const struct hid_device_id hid_hiddev_list[] = { { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS) }, |