lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 01 Sep 2016 18:19:07 -0700
From:   Joshua Clayton <stillcompiling@...il.com>
To:     linux-arm-kernel@...ts.infradead.org
Cc:     Martin Kaiser <martin@...ser.cx>, Shawn Guo <shawnguo@...nel.org>,
        Sascha Hauer <kernel@...gutronix.de>,
        Fabio Estevam <fabio.estevam@....com>,
        Jiri Kosina <trivial@...nel.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ARM: imx: (trivial) fix a typo

On Thursday, September 01, 2016 10:48:16 PM Martin Kaiser wrote:
> Signed-off-by: Martin Kaiser <martin@...ser.cx>
> ---
>  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))
  
 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ