Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd4dc082 authored by Frank Praznik's avatar Frank Praznik Committed by Jiri Kosina
Browse files

HID: Add transport-driver callbacks to the hid_ll_driver struct



Add raw_request and output_report callbacks to the hid_ll_driver struct.

Signed-off-by: default avatarFrank Praznik <frank.praznik@oh.rr.com>
Acked-by: default avatarDavid Herrmann <dh.herrmann@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 4988abf1
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -700,8 +700,14 @@ struct hid_ll_driver {
			struct hid_report *report, int reqtype);

	int (*wait)(struct hid_device *hdev);
	int (*idle)(struct hid_device *hdev, int report, int idle, int reqtype);

	int (*raw_request) (struct hid_device *hdev, unsigned char reportnum,
			    __u8 *buf, size_t len, unsigned char rtype,
			    int reqtype);

	int (*output_report) (struct hid_device *hdev, __u8 *buf, size_t len);

	int (*idle)(struct hid_device *hdev, int report, int idle, int reqtype);
};

#define	PM_HINT_FULLON	1<<5