Message ID | 20221222-hid-v1-3-f4a6c35487a5@weissschuh.net (mailing list archive) |
---|---|
State | Accepted |
Commit | 1d9ca84ce034960707b62ce7d5ca75d04f8db91a |
Headers | show |
Series | HID: remove some unneeded exported symbols from hid.h | expand |
diff --git a/include/linux/hid.h b/include/linux/hid.h index e8400aa78522..7c5fce6a189e 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -858,12 +858,6 @@ extern struct hid_ll_driver hidp_hid_driver; extern struct hid_ll_driver uhid_hid_driver; extern struct hid_ll_driver usb_hid_driver; -static inline bool hid_is_using_ll_driver(struct hid_device *hdev, - struct hid_ll_driver *driver) -{ - return hdev->ll_driver == driver; -} - extern bool hid_is_usb(const struct hid_device *hdev); #define PM_HINT_FULLON 1<<5
As the last user was removed we can delete this function. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> --- include/linux/hid.h | 6 ------ 1 file changed, 6 deletions(-)