Lines Matching refs:bl_entry
184 struct hid_blacklist *bl_entry = NULL; in usbhid_exists_dquirk() local
189 bl_entry = &q->hid_bl_item; in usbhid_exists_dquirk()
194 if (bl_entry != NULL) in usbhid_exists_dquirk()
196 bl_entry->quirks, bl_entry->idVendor, in usbhid_exists_dquirk()
197 bl_entry->idProduct); in usbhid_exists_dquirk()
199 return bl_entry; in usbhid_exists_dquirk()
335 const struct hid_blacklist *bl_entry = NULL; in usbhid_exists_squirk() local
342 bl_entry = &hid_blacklist[n]; in usbhid_exists_squirk()
344 if (bl_entry != NULL) in usbhid_exists_squirk()
346 bl_entry->quirks, bl_entry->idVendor, in usbhid_exists_squirk()
347 bl_entry->idProduct); in usbhid_exists_squirk()
348 return bl_entry; in usbhid_exists_squirk()
365 const struct hid_blacklist *bl_entry = NULL; in usbhid_lookup_quirk() local
374 bl_entry = usbhid_exists_dquirk(idVendor, idProduct); in usbhid_lookup_quirk()
375 if (!bl_entry) in usbhid_lookup_quirk()
376 bl_entry = usbhid_exists_squirk(idVendor, idProduct); in usbhid_lookup_quirk()
377 if (bl_entry) in usbhid_lookup_quirk()
378 quirks = bl_entry->quirks; in usbhid_lookup_quirk()