From patchwork Mon May 1 14:57:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Kepplinger-Novakovic X-Patchwork-Id: 9706655 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 485DD60387 for ; Mon, 1 May 2017 14:57:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 34101205A8 for ; Mon, 1 May 2017 14:57:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 27E6E209CD; Mon, 1 May 2017 14:57:26 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CA096205A8 for ; Mon, 1 May 2017 14:57:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756897AbdEAO5W (ORCPT ); Mon, 1 May 2017 10:57:22 -0400 Received: from mout02.posteo.de ([185.67.36.66]:48606 "EHLO mout02.posteo.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756893AbdEAO5V (ORCPT ); Mon, 1 May 2017 10:57:21 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 7ECCB20BC4 for ; Mon, 1 May 2017 16:57:19 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3wGnZk1Zc3z10B5; Mon, 1 May 2017 16:57:18 +0200 (CEST) From: Martin Kepplinger To: dmitry.torokhov@gmail.com Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Martin Kepplinger Subject: [PATCH] input: ar1021_i2c: add previously wrongly removed ABS_X parameter Date: Mon, 1 May 2017 16:57:09 +0200 Message-Id: <20170501145709.9803-1-martink@posteo.de> X-Mailer: git-send-email 2.11.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The recent change commit 2098cc15d9a0 ("Input: ar1021_i2c - enable touch mode during open") also removed the ABS_X input code to be set. This must have been done by mistake; so we bring back the X axis! Signed-off-by: Martin Kepplinger --- Dmitry, this must have slipped in somehow. I didn't have this mistake included: https://www.spinics.net/lists/linux-input/msg51103.html thanks martin drivers/input/touchscreen/ar1021_i2c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/touchscreen/ar1021_i2c.c b/drivers/input/touchscreen/ar1021_i2c.c index ff59c3a383d6..3f55f673f661 100644 --- a/drivers/input/touchscreen/ar1021_i2c.c +++ b/drivers/input/touchscreen/ar1021_i2c.c @@ -118,6 +118,7 @@ static int ar1021_i2c_probe(struct i2c_client *client, input->close = ar1021_i2c_close; input_set_capability(input, EV_KEY, BTN_TOUCH); + input_set_abs_params(input, ABS_X, 0, AR1021_MAX_X, 0, 0); input_set_abs_params(input, ABS_Y, 0, AR1021_MAX_Y, 0, 0); input_set_drvdata(input, ar1021);