Lines Matching refs:hid_blacklist
28 static const struct hid_blacklist { struct
32 } hid_blacklist[] = { variable
150 struct hid_blacklist hid_bl_item;
171 static struct hid_blacklist *usbhid_exists_dquirk(const u16 idVendor, in usbhid_exists_dquirk()
175 struct hid_blacklist *bl_entry = NULL; in usbhid_exists_dquirk()
323 static const struct hid_blacklist *usbhid_exists_squirk(const u16 idVendor, in usbhid_exists_squirk()
326 const struct hid_blacklist *bl_entry = NULL; in usbhid_exists_squirk()
329 for (; hid_blacklist[n].idVendor; n++) in usbhid_exists_squirk()
330 if (hid_blacklist[n].idVendor == idVendor && in usbhid_exists_squirk()
331 hid_blacklist[n].idProduct == idProduct) in usbhid_exists_squirk()
332 bl_entry = &hid_blacklist[n]; in usbhid_exists_squirk()
355 const struct hid_blacklist *bl_entry = NULL; in usbhid_lookup_quirk()