mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] fix typo addreee -> address
Date: Fri, 11 May 2012 21:56:57 +0200	[thread overview]
Message-ID: <20120511195657.GS27341@pengutronix.de> (raw)
In-Reply-To: <1336574357-27556-1-git-send-email-u.kleine-koenig@pengutronix.de>

On Wed, May 09, 2012 at 04:39:17PM +0200, Uwe Kleine-König wrote:
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Applied, thanks

Sascha

> ---
>  arch/arm/boards/eukrea_cpuimx27/lowlevel_init.S        |    2 +-
>  arch/arm/boards/freescale-mx25-3-stack/lowlevel_init.S |    2 +-
>  arch/arm/boards/freescale-mx35-3-stack/lowlevel_init.S |    2 +-
>  arch/arm/boards/imx21ads/lowlevel_init.S               |    2 +-
>  arch/arm/boards/pcm037/lowlevel_init.S                 |    2 +-
>  arch/arm/boards/phycard-i.MX27/lowlevel_init.S         |    2 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/boards/eukrea_cpuimx27/lowlevel_init.S b/arch/arm/boards/eukrea_cpuimx27/lowlevel_init.S
> index 5295a8a..e318546 100644
> --- a/arch/arm/boards/eukrea_cpuimx27/lowlevel_init.S
> +++ b/arch/arm/boards/eukrea_cpuimx27/lowlevel_init.S
> @@ -124,7 +124,7 @@ board_init_lowlevel:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}		/* copy from source address [r0]    */
>  	stmia	r1!, {r3-r9}		/* copy to   target address [r1]    */
> -	cmp	r0, r2			/* until source end addreee [r2]    */
> +	cmp	r0, r2			/* until source end address [r2]    */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f			/* Jump to SDRAM                    */
> diff --git a/arch/arm/boards/freescale-mx25-3-stack/lowlevel_init.S b/arch/arm/boards/freescale-mx25-3-stack/lowlevel_init.S
> index 73bb147..7b75233 100644
> --- a/arch/arm/boards/freescale-mx25-3-stack/lowlevel_init.S
> +++ b/arch/arm/boards/freescale-mx25-3-stack/lowlevel_init.S
> @@ -117,7 +117,7 @@ board_init_lowlevel:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}		/* copy from source address [r0]    */
>  	stmia	r1!, {r3-r9}		/* copy to   target address [r1]    */
> -	cmp	r0, r2			/* until source end addreee [r2]    */
> +	cmp	r0, r2			/* until source end address [r2]    */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f			/* Jump to SDRAM                    */
> diff --git a/arch/arm/boards/freescale-mx35-3-stack/lowlevel_init.S b/arch/arm/boards/freescale-mx35-3-stack/lowlevel_init.S
> index 413e04a..30dbcc0 100644
> --- a/arch/arm/boards/freescale-mx35-3-stack/lowlevel_init.S
> +++ b/arch/arm/boards/freescale-mx35-3-stack/lowlevel_init.S
> @@ -173,7 +173,7 @@ board_init_lowlevel:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}			/* copy from source address [r0] */
>  	stmia	r1!, {r3-r9}			/* copy to   target address [r1] */
> -	cmp	r0, r2				/* until source end addreee [r2] */
> +	cmp	r0, r2				/* until source end address [r2] */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f				/* Jump to SDRAM */
> diff --git a/arch/arm/boards/imx21ads/lowlevel_init.S b/arch/arm/boards/imx21ads/lowlevel_init.S
> index 607da27..7926e28 100644
> --- a/arch/arm/boards/imx21ads/lowlevel_init.S
> +++ b/arch/arm/boards/imx21ads/lowlevel_init.S
> @@ -138,7 +138,7 @@ board_init_lowlevel:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}		/* copy from source address [r0]    */
>  	stmia	r1!, {r3-r9}		/* copy to   target address [r1]    */
> -	cmp	r0, r2			/* until source end addreee [r2]    */
> +	cmp	r0, r2			/* until source end address [r2]    */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f			/* Jump to SDRAM                    */
> diff --git a/arch/arm/boards/pcm037/lowlevel_init.S b/arch/arm/boards/pcm037/lowlevel_init.S
> index 8988db2..cc4674d 100644
> --- a/arch/arm/boards/pcm037/lowlevel_init.S
> +++ b/arch/arm/boards/pcm037/lowlevel_init.S
> @@ -151,7 +151,7 @@ clear_iomux:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}		/* copy from source address [r0]    */
>  	stmia	r1!, {r3-r9}		/* copy to   target address [r1]    */
> -	cmp	r0, r2			/* until source end addreee [r2]    */
> +	cmp	r0, r2			/* until source end address [r2]    */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f			/* Jump to SDRAM                    */
> diff --git a/arch/arm/boards/phycard-i.MX27/lowlevel_init.S b/arch/arm/boards/phycard-i.MX27/lowlevel_init.S
> index 9349581..3ef2c54 100644
> --- a/arch/arm/boards/phycard-i.MX27/lowlevel_init.S
> +++ b/arch/arm/boards/phycard-i.MX27/lowlevel_init.S
> @@ -111,7 +111,7 @@ board_init_lowlevel:
>  copy_loop:
>  	ldmia	r0!, {r3-r9}		/* copy from source address [r0]    */
>  	stmia	r1!, {r3-r9}		/* copy to   target address [r1]    */
> -	cmp	r0, r2			/* until source end addreee [r2]    */
> +	cmp	r0, r2			/* until source end address [r2]    */
>  	ble	copy_loop
>  
>  	ldr	pc, =1f			/* Jump to SDRAM                    */
> -- 
> 1.7.10
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2012-05-11 19:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-09 14:39 Uwe Kleine-König
2012-05-11 19:56 ` Sascha Hauer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120511195657.GS27341@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox