Lines Matching defs:hid_driver
813 struct hid_driver { struct
814 char *name;
815 const struct hid_device_id *id_table;
817 struct list_head dyn_list;
818 spinlock_t dyn_lock;
820 bool (*match)(struct hid_device *dev, bool ignore_special_driver);
821 int (*probe)(struct hid_device *dev, const struct hid_device_id *id);
822 void (*remove)(struct hid_device *dev);
824 const struct hid_report_id *report_table;
825 int (*raw_event)(struct hid_device *hdev, struct hid_report *report,
827 const struct hid_usage_id *usage_table;
828 int (*event)(struct hid_device *hdev, struct hid_field *field,
830 void (*report)(struct hid_device *hdev, struct hid_report *report);
855 #define to_hid_driver(pdrv) \ argument
856 container_of(pdrv, struct hid_driver, driver) argument