hid_driver
Regular
4.4
: Absent ⚠️
4.8
: Absent ⚠️
4.10
: Absent ⚠️
4.13
: Absent ⚠️
4.15
: Absent ⚠️
4.18
: Absent ⚠️
5.0
: Absent ⚠️
5.3
: Absent ⚠️
5.4
: Absent ⚠️
5.8
: Absent ⚠️
5.11
: Absent ⚠️
5.13
: Absent ⚠️
5.15
: Absent ⚠️
5.19
: Absent ⚠️
6.2
: Absent ⚠️
6.5
: ✅struct hid_driver {
char *name;
const struct hid_device_id *id_table;
struct list_head dyn_list;
spinlock_t dyn_lock;
bool (*match)(struct hid_device *, bool);
int (*probe)(struct hid_device *, const struct hid_device_id *);
void (*remove)(struct hid_device *);
const struct hid_report_id *report_table;
int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int);
const struct hid_usage_id *usage_table;
int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32);
void (*report)(struct hid_device *, struct hid_report *);
__u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *);
int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *);
int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *);
int (*input_configured)(struct hid_device *, struct hid_input *);
void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *);
int (*suspend)(struct hid_device *, pm_message_t);
int (*resume)(struct hid_device *);
int (*reset_resume)(struct hid_device *);
struct device_driver driver;
};
6.8
: ✅struct hid_driver {
char *name;
const struct hid_device_id *id_table;
struct list_head dyn_list;
spinlock_t dyn_lock;
bool (*match)(struct hid_device *, bool);
int (*probe)(struct hid_device *, const struct hid_device_id *);
void (*remove)(struct hid_device *);
const struct hid_report_id *report_table;
int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int);
const struct hid_usage_id *usage_table;
int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32);
void (*report)(struct hid_device *, struct hid_report *);
__u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *);
int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *);
int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *);
int (*input_configured)(struct hid_device *, struct hid_input *);
void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *);
int (*suspend)(struct hid_device *, pm_message_t);
int (*resume)(struct hid_device *);
int (*reset_resume)(struct hid_device *);
struct device_driver driver;
};
arm64
: Absent ⚠️
armhf
: Absent ⚠️
ppc64el
: Absent ⚠️
riscv64
: Absent ⚠️
aws
: Absent ⚠️
azure
: Absent ⚠️
gcp
: Absent ⚠️
lowlatency
: Absent ⚠️
Regular
6.5
and 6.8
✅