Lines Matching defs:hid_driver
742 struct hid_driver { struct
743 char *name;
744 const struct hid_device_id *id_table;
746 struct list_head dyn_list;
747 spinlock_t dyn_lock;
749 bool (*match)(struct hid_device *dev, bool ignore_special_driver);
750 int (*probe)(struct hid_device *dev, const struct hid_device_id *id);
751 void (*remove)(struct hid_device *dev);
753 const struct hid_report_id *report_table;
754 int (*raw_event)(struct hid_device *hdev, struct hid_report *report,
756 const struct hid_usage_id *usage_table;
757 int (*event)(struct hid_device *hdev, struct hid_field *field,
759 void (*report)(struct hid_device *hdev, struct hid_report *report);
784 #define to_hid_driver(pdrv) \ argument
785 container_of(pdrv, struct hid_driver, driver) argument