mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:50:52 +07:00
media: rc: mark input device as pointing stick
libinput refuses pointer movement from rc-core, since it believes it's not a pointer-type device: libinput error: event17 - Media Center Ed. eHome Infrared Remote Transceiver (1784:0008): libinput bug: REL_X/Y from a non-pointer device Fixes:158bc148a3
("media: rc: mce_kbd: input events via rc-core's input device") Fixes:0ac5a603a7
("media: rc: imon: report mouse events using rc-core's input device") Cc: stable@vger.kernel.org # 4.20+ Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
6bf33ca2a9
commit
ce819649b0
@ -1773,6 +1773,7 @@ static int rc_prepare_rx_device(struct rc_dev *dev)
|
||||
set_bit(MSC_SCAN, dev->input_dev->mscbit);
|
||||
|
||||
/* Pointer/mouse events */
|
||||
set_bit(INPUT_PROP_POINTING_STICK, dev->input_dev->propbit);
|
||||
set_bit(EV_REL, dev->input_dev->evbit);
|
||||
set_bit(REL_X, dev->input_dev->relbit);
|
||||
set_bit(REL_Y, dev->input_dev->relbit);
|
||||
|
Loading…
Reference in New Issue
Block a user