Lines Matching refs:bl_entry
175 struct hid_blacklist *bl_entry = NULL; in usbhid_exists_dquirk() local
180 bl_entry = &q->hid_bl_item; in usbhid_exists_dquirk()
185 if (bl_entry != NULL) in usbhid_exists_dquirk()
187 bl_entry->quirks, bl_entry->idVendor, in usbhid_exists_dquirk()
188 bl_entry->idProduct); in usbhid_exists_dquirk()
190 return bl_entry; in usbhid_exists_dquirk()
326 const struct hid_blacklist *bl_entry = NULL; in usbhid_exists_squirk() local
332 bl_entry = &hid_blacklist[n]; in usbhid_exists_squirk()
334 if (bl_entry != NULL) in usbhid_exists_squirk()
336 bl_entry->quirks, bl_entry->idVendor, in usbhid_exists_squirk()
337 bl_entry->idProduct); in usbhid_exists_squirk()
338 return bl_entry; in usbhid_exists_squirk()
355 const struct hid_blacklist *bl_entry = NULL; in usbhid_lookup_quirk() local
364 bl_entry = usbhid_exists_dquirk(idVendor, idProduct); in usbhid_lookup_quirk()
365 if (!bl_entry) in usbhid_lookup_quirk()
366 bl_entry = usbhid_exists_squirk(idVendor, idProduct); in usbhid_lookup_quirk()
367 if (bl_entry) in usbhid_lookup_quirk()
368 quirks = bl_entry->quirks; in usbhid_lookup_quirk()