File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ static int should_enumerate_interface(unsigned short vendor_id, const struct lib
927
927
return 0 ;
928
928
}
929
929
930
- static int hid_blacklist (unsigned short vendor_id , unsigned short product_id )
930
+ static int libusb_blacklist (unsigned short vendor_id , unsigned short product_id )
931
931
{
932
932
size_t i ;
933
933
static const struct { unsigned short vid ; unsigned short pid ; } known_bad [] = {
@@ -974,7 +974,7 @@ struct hid_device_info HID_API_EXPORT *hid_enumerate(unsigned short vendor_id,
974
974
975
975
if ((vendor_id != 0x0 && vendor_id != dev_vid ) ||
976
976
(product_id != 0x0 && product_id != dev_pid ) ||
977
- hid_blacklist (dev_vid , dev_pid )) {
977
+ libusb_blacklist (dev_vid , dev_pid )) {
978
978
continue ;
979
979
}
980
980
You can’t perform that action at this time.
0 commit comments