From: Benson Leung <bleung@xxxxxxxxxxxx> Touchpads are pointers, so make sure to pass the correct values to input_mt_report_pointer_emulation(). Without this, tap-to-click doesn't work. Signed-off-by: Benson Leung <bleung@xxxxxxxxxxxx> [swarren, rewrote the commit description, since the downstream version concentrated on patch rebase history rather than the functionality] Signed-off-by: Stephen Warren <swarren@xxxxxxxxxx> --- drivers/input/touchscreen/atmel_mxt_ts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c index a70400754e92..9ba7e30c7894 100644 --- a/drivers/input/touchscreen/atmel_mxt_ts.c +++ b/drivers/input/touchscreen/atmel_mxt_ts.c @@ -619,7 +619,8 @@ static irqreturn_t mxt_interrupt(int irq, void *dev_id) } while (reportid != 0xff); if (update_input) { - input_mt_report_pointer_emulation(data->input_dev, false); + input_mt_report_pointer_emulation(data->input_dev, + data->is_tp); input_sync(data->input_dev); } -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html