diff options
-rw-r--r-- | drivers/hid/hid-ntrig.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-ntrig.c b/drivers/hid/hid-ntrig.c index 98d1fdf7d8cd..600f2075512f 100644 --- a/drivers/hid/hid-ntrig.c +++ b/drivers/hid/hid-ntrig.c | |||
@@ -115,7 +115,8 @@ static inline int ntrig_get_mode(struct hid_device *hdev) | |||
115 | struct hid_report *report = hdev->report_enum[HID_FEATURE_REPORT]. | 115 | struct hid_report *report = hdev->report_enum[HID_FEATURE_REPORT]. |
116 | report_id_hash[0x0d]; | 116 | report_id_hash[0x0d]; |
117 | 117 | ||
118 | if (!report) | 118 | if (!report || report->maxfield < 1 || |
119 | report->field[0]->report_count < 1) | ||
119 | return -EINVAL; | 120 | return -EINVAL; |
120 | 121 | ||
121 | hid_hw_request(hdev, report, HID_REQ_GET_REPORT); | 122 | hid_hw_request(hdev, report, HID_REQ_GET_REPORT); |