Lines Matching defs:hid_driver
803 struct hid_driver { struct
804 char *name;
805 const struct hid_device_id *id_table;
807 struct list_head dyn_list;
808 spinlock_t dyn_lock;
810 bool (*match)(struct hid_device *dev, bool ignore_special_driver);
811 int (*probe)(struct hid_device *dev, const struct hid_device_id *id);
812 void (*remove)(struct hid_device *dev);
814 const struct hid_report_id *report_table;
815 int (*raw_event)(struct hid_device *hdev, struct hid_report *report,
817 const struct hid_usage_id *usage_table;
818 int (*event)(struct hid_device *hdev, struct hid_field *field,
820 void (*report)(struct hid_device *hdev, struct hid_report *report);
845 #define to_hid_driver(pdrv) \ argument
846 container_of(pdrv, struct hid_driver, driver) argument