diff options
Diffstat (limited to 'drivers/hid/hid-axff.c')
-rw-r--r-- | drivers/hid/hid-axff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-axff.c b/drivers/hid/hid-axff.c index 64ab94a55aa7..a594e478a1e2 100644 --- a/drivers/hid/hid-axff.c +++ b/drivers/hid/hid-axff.c | |||
@@ -95,7 +95,7 @@ static int axff_init(struct hid_device *hid) | |||
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||
98 | if (field_count < 4) { | 98 | if (field_count < 4 && hid->product != 0xf705) { |
99 | hid_err(hid, "not enough fields in the report: %d\n", | 99 | hid_err(hid, "not enough fields in the report: %d\n", |
100 | field_count); | 100 | field_count); |
101 | return -ENODEV; | 101 | return -ENODEV; |
@@ -180,6 +180,7 @@ static void ax_remove(struct hid_device *hdev) | |||
180 | 180 | ||
181 | static const struct hid_device_id ax_devices[] = { | 181 | static const struct hid_device_id ax_devices[] = { |
182 | { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802), }, | 182 | { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802), }, |
183 | { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705), }, | ||
183 | { } | 184 | { } |
184 | }; | 185 | }; |
185 | MODULE_DEVICE_TABLE(hid, ax_devices); | 186 | MODULE_DEVICE_TABLE(hid, ax_devices); |