From 2ad89d72386029d2cbeedae010c10a6c0f50639b Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Fri, 11 Mar 2022 22:01:10 +0100 Subject: [PATCH 088/406] input: cyttsp4: Fix probe oops __set_bit is called with bit offset -1 which causes oops. Signed-off-by: Ondrej Jirman --- drivers/input/touchscreen/cyttsp4_core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/input/touchscreen/cyttsp4_core.c b/drivers/input/touchscreen/cyttsp4_core.c index b2b8c4da1d57..75b6056ec842 100644 --- a/drivers/input/touchscreen/cyttsp4_core.c +++ b/drivers/input/touchscreen/cyttsp4_core.c @@ -1902,6 +1902,9 @@ static int cyttsp4_setup_input_device(struct cyttsp4 *cd) for (i = 0; i < cd->n_signals; i++) { signal = &cd->signals[i]; + if (signal->signal < 0) + continue; + __set_bit(signal->signal, cd->input->absbit); max = signal->max; -- 2.34.1