From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751500AbcIBBTM (ORCPT ); Thu, 1 Sep 2016 21:19:12 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:34578 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751350AbcIBBTL (ORCPT ); Thu, 1 Sep 2016 21:19:11 -0400 From: Joshua Clayton To: linux-arm-kernel@lists.infradead.org Cc: Martin Kaiser , Shawn Guo , Sascha Hauer , Fabio Estevam , Jiri Kosina , linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: imx: (trivial) fix a typo Date: Thu, 01 Sep 2016 18:19:07 -0700 Message-ID: <1993847.IzPN1S0Ejq@diplodocus> User-Agent: KMail/4.14.10 (Linux/4.7.0-00001-g4c7d2fd-dirty; KDE/4.14.23; x86_64; ; ) In-Reply-To: <20160901204816.GA8057@reykholt.kaiser.cx> References: <20160901204816.GA8057@reykholt.kaiser.cx> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday, September 01, 2016 10:48:16 PM Martin Kaiser wrote: > Signed-off-by: Martin Kaiser > --- > arch/arm/mach-imx/hardware.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/mach-imx/hardware.h b/arch/arm/mach-imx/hardware.h > index a42a6df..2810ffc 100644 > --- a/arch/arm/mach-imx/hardware.h > +++ b/arch/arm/mach-imx/hardware.h > @@ -120,7 +120,7 @@ > .type = _type, \ > } > > -/* There's a off-by-one betweem the gpio bank number and the gpiochip */ > +/* There's a off-by-one between the gpio bank number and the gpiochip */ > /* range e.g. GPIO_1_5 is gpio 5 under linux */ > #define IMX_GPIO_NR(bank, nr) (((bank) - 1) * 32 + (nr)) > > s/a/an/ while we're in there fixing spelling let's fix the grammar too: diff --git a/arch/arm/mach-imx/hardware.h b/arch/arm/mach-imx/hardware.h index a42a6df..2810ffc 100644 --- a/arch/arm/mach-imx/hardware.h +++ b/arch/arm/mach-imx/hardware.h @@ -120,7 +120,7 @@ .type = _type, \ } -/* There's a off-by-one betweem the gpio bank number and the gpiochip */ +/* There's an off-by-one between the gpio bank number and the gpiochip */ /* range e.g. GPIO_1_5 is gpio 5 under linux */ #define IMX_GPIO_NR(bank, nr) (((bank) - 1) * 32 + (nr))