Re: [PATCH] [v2] Input: touchscreen: Fix a missing check on regmap_bulk_read

2019-01-07 Thread Dmitry Torokhov
On Sun, Jan 06, 2019 at 12:17:27PM -0600, Aditya Pakki wrote: > regmap_bulk_read() can return a non zero value on failure. The fix > checks if the function call succeeded before calling mod_timer. The > issue was identified by a static analysis tool. > > Signed-off-by: Aditya Pakki Applied,

[PATCH] [v2] Input: touchscreen: Fix a missing check on regmap_bulk_read

2019-01-06 Thread Aditya Pakki
regmap_bulk_read() can return a non zero value on failure. The fix checks if the function call succeeded before calling mod_timer. The issue was identified by a static analysis tool. Signed-off-by: Aditya Pakki --- drivers/input/touchscreen/ad7879.c | 11 +++ 1 file changed, 7