]> git.baikalelectronics.ru Git - kernel.git/commit
HID: i2c-hid: Fix "incomplete report" noise
authorJason Andryuk <jandryuk@gmail.com>
Fri, 22 Jun 2018 16:25:49 +0000 (12:25 -0400)
committerJiri Kosina <jkosina@suse.cz>
Mon, 9 Jul 2018 12:26:47 +0000 (14:26 +0200)
commit30e34fbff9a3982a0486a0504886b86a84b26564
treed70e1cd7872f533192a5587a5b92618b3185c7b8
parenta1dd8d135fe6bcead9e52643460ef56ef4c560db
HID: i2c-hid: Fix "incomplete report" noise

Commit c5940fd1e0f2 ("HID: i2c-hid: fix size check and type usage") started
writing messages when the ret_size is <= 2 from i2c_master_recv.  However, my
device i2c-DLL07D1 returns 2 for a short period of time (~0.5s) after I stop
moving the pointing stick or touchpad.  It varies, but you get ~50 messages
each time which spams the log hard.

[  95.925055] i2c_hid i2c-DLL07D1:01: i2c_hid_get_input: incomplete report (83/2)

This has also been observed with a i2c-ALP0017.

[ 1781.266353] i2c_hid i2c-ALP0017:00: i2c_hid_get_input: incomplete report (30/2)

Only print the message when ret_size is totally invalid and less than 2 to cut
down on the log spam.

Fixes: c5940fd1e0f2 ("HID: i2c-hid: fix size check and type usage")
Reported-by: John Smith <john-s-84@gmx.net>
Cc: stable@vger.kernel.org
Signed-off-by: Jason Andryuk <jandryuk@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/i2c-hid/i2c-hid.c