Lines Matching defs:hid_driver
736 struct hid_driver { struct
737 char *name;
738 const struct hid_device_id *id_table;
740 struct list_head dyn_list;
741 spinlock_t dyn_lock;
743 bool (*match)(struct hid_device *dev, bool ignore_special_driver);
744 int (*probe)(struct hid_device *dev, const struct hid_device_id *id);
745 void (*remove)(struct hid_device *dev);
747 const struct hid_report_id *report_table;
748 int (*raw_event)(struct hid_device *hdev, struct hid_report *report,
750 const struct hid_usage_id *usage_table;
751 int (*event)(struct hid_device *hdev, struct hid_field *field,
753 void (*report)(struct hid_device *hdev, struct hid_report *report);
778 #define to_hid_driver(pdrv) \ argument
779 container_of(pdrv, struct hid_driver, driver) argument