hid: Add Razer Arctosa keyboard to hid enumeration blacklist.

Hangs SDL, same as the Razer Lycosa.

Fixes Bugzilla #5101.
Ryan C. Gordon 2020-04-21 01:32:48 -04:00
parent 09ca66bf66
commit 3625b83c63
1 changed files with 6 additions and 0 deletions

View File

@ -326,6 +326,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id)
return 1;
}
// Razer Arctosa Gaming keyboard - Causes deadlock when asking for device details
if ( vendor_id == 0x1532 && product_id == 0x010B )
{
return 1;
}
// SPEEDLINK COMPETITION PRO - turns into an Android controller when enumerated
if ( vendor_id == 0x0738 && product_id == 0x2217 )
{