Skip to content

Commit aa4af0f

Browse files
mitagregkh
authored andcommitted
Input: mpr121 - set missing event capability
[ Upstream commit 9723ddc8fe0d76ce41fe0dc16afb241ec7d0a29d ] This driver reports misc scan input events on the sensor's status register changes. But the event capability for them was not set in the device initialization, so these events were ignored. This change adds the missing event capability. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 0a73192 commit aa4af0f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/input/keyboard/mpr121_touchkey.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ static int mpr_touchkey_probe(struct i2c_client *client,
236236
input_dev->id.bustype = BUS_I2C;
237237
input_dev->dev.parent = &client->dev;
238238
input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
239+
input_set_capability(input_dev, EV_MSC, MSC_SCAN);
239240

240241
input_dev->keycode = mpr121->keycodes;
241242
input_dev->keycodesize = sizeof(mpr121->keycodes[0]);

0 commit comments

Comments
 (0)