diff options
author | Benjamin Tissoires <benjamin.tissoires@gmail.com> | 2012-12-04 10:27:50 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-12-05 05:27:54 -0500 |
commit | c737bcf92ea206d3b5d351890f1ade9e12ad4cbe (patch) | |
tree | f5e868e36a4faeb9c74ca8a7c03790800d3f4bb9 /drivers/hid | |
parent | 134ebfd86b9353a3d98f9f4e93b4e79824a4b49a (diff) |
HID: i2c-hid: i2c_hid_get_report may fail
If i2c_hid_get_report fails, exit i2c_hid_init_report.
The printk log is already called by i2c_hid_get_report, so no need
to add some more printks.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/i2c-hid/i2c-hid.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c index aab3357626c7..c823a16f35ac 100644 --- a/drivers/hid/i2c-hid/i2c-hid.c +++ b/drivers/hid/i2c-hid/i2c-hid.c | |||
@@ -399,9 +399,10 @@ static void i2c_hid_init_report(struct hid_report *report, u8 *buffer, | |||
399 | unsigned int size, ret_size; | 399 | unsigned int size, ret_size; |
400 | 400 | ||
401 | size = i2c_hid_get_report_length(report); | 401 | size = i2c_hid_get_report_length(report); |
402 | i2c_hid_get_report(client, | 402 | if (i2c_hid_get_report(client, |
403 | report->type == HID_FEATURE_REPORT ? 0x03 : 0x01, | 403 | report->type == HID_FEATURE_REPORT ? 0x03 : 0x01, |
404 | report->id, buffer, size); | 404 | report->id, buffer, size)) |
405 | return; | ||
405 | 406 | ||
406 | i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, ihid->inbuf); | 407 | i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, ihid->inbuf); |
407 | 408 | ||