From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AD6B7C433E0 for ; Mon, 22 Feb 2021 09:11:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 62EB264DE5 for ; Mon, 22 Feb 2021 09:11:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230037AbhBVJKu (ORCPT ); Mon, 22 Feb 2021 04:10:50 -0500 Received: from mail.kernel.org ([198.145.29.99]:44698 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230100AbhBVJK2 (ORCPT ); Mon, 22 Feb 2021 04:10:28 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id B2E0664DE5; Mon, 22 Feb 2021 09:09:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1613984987; bh=EKegPUwUKotxlOegY+ew4LCdfwE80de2IMwqvvfAsRA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZtlI7RfJd7K8Pl+3BbAZ62wLQpyFOJfsBNT1issztP86fCbNFksE1aUfo1bG3EYBO EX5ugvyjRIH/nZLqMTr80NmLvaEVghZdRiYMVqtZbk9BNIiO8ks4EZDLIpELkegooR dJvWgvDftHSugjtrTF1qzG8H/N0LBu9CFub7dY3zAoXrSA/5mgwlvdZm3NBjxQEnOR sjnE+QctDeC34/SspuRRmZvxjwKr3iy8TrmSjfldyAPgoIPDOiN2iTrxQnGgFsha5f 6fIQlY+zVeIAmtYpIB6FxhbzohElwHvM+9dszyA5tf8R/uJbRvZMpqKTCqjADsChHe oIDIOuqEwsRpw== Received: by pali.im (Postfix) id 12BE8C9A; Mon, 22 Feb 2021 10:09:44 +0100 (CET) Date: Mon, 22 Feb 2021 10:09:44 +0100 From: Pali =?utf-8?B?Um9ow6Fy?= To: Randy Dunlap Cc: Bhaskar Chowdhury , dmitry.torokhov@gmail.com, rydberg@bitmath.org, colin.king@canonical.com, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drivers: input: mouse: Change postive to positive in the file alps.c Message-ID: <20210222090944.nhvcwmzkwuoh2g4z@pali> References: <20210222075439.32201-1-unixbhaskar@gmail.com> <97932a41-0d3b-adaa-3b08-35c6e81763ff@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <97932a41-0d3b-adaa-3b08-35c6e81763ff@infradead.org> User-Agent: NeoMutt/20180716 Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org On Monday 22 February 2021 00:07:40 Randy Dunlap wrote: > On 2/21/21 11:54 PM, Bhaskar Chowdhury wrote: > > > > s/postive/positive/ > > > > Signed-off-by: Bhaskar Chowdhury > > Acked-by: Randy Dunlap Reviewed-by: Pali Rohár > > --- > > drivers/input/mouse/alps.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c > > index b067bfd2699c..4a6b33bbe7ea 100644 > > --- a/drivers/input/mouse/alps.c > > +++ b/drivers/input/mouse/alps.c > > @@ -986,7 +986,7 @@ static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt, > > case V7_PACKET_ID_TWO: > > mt[1].x &= ~0x000F; > > mt[1].y |= 0x000F; > > - /* Detect false-postive touches where x & y report max value */ > > + /* Detect false-positive touches where x & y report max value */ > > if (mt[1].y == 0x7ff && mt[1].x == 0xff0) { > > mt[1].x = 0; > > /* y gets set to 0 at the end of this function */ > > -- > > > -- > ~Randy >