This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: rc: mark input device as pointing stick
Author:  Sean Young <s...@mess.org>
Date:    Sat Sep 28 17:46:14 2019 -0300

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: 158bc148a31e ("media: rc: mce_kbd: input events via rc-core's input 
device")
Fixes: 0ac5a603a732 ("media: rc: imon: report mouse events using rc-core's 
input device")
Cc: sta...@vger.kernel.org # 4.20+
Signed-off-by: Sean Young <s...@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+sams...@kernel.org>

 drivers/media/rc/rc-main.c | 1 +
 1 file changed, 1 insertion(+)

---

diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
index 13da4c5c7d17..7741151606ef 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -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);

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to