dect
/
linux-2.6
Archived
13
0
Fork 0

USB HID: don't warn on idVendor == 0

It turns out that there are broken devices out there that incorrectly
report VID/PID as 0x000, see http://lkml.org/lkml/2007/4/27/496

Therefore we should not confuse users by dumping warnings and stacktraces
in such situation. It is not possible to add quirks for such horribly
broken devices, but currently that's not needed.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Jiri Kosina 2007-04-29 13:14:56 +02:00
parent 876b9276b9
commit f61c9127b9
1 changed files with 0 additions and 2 deletions

View File

@ -477,8 +477,6 @@ static struct hid_blacklist *usbhid_exists_dquirk(const u16 idVendor,
struct quirks_list_struct *q;
struct hid_blacklist *bl_entry = NULL;
WARN_ON(idVendor == 0);
list_for_each_entry(q, &dquirks_list, node) {
if (q->hid_bl_item.idVendor == idVendor &&
q->hid_bl_item.idProduct == idProduct) {