diff mbox

ARM: head: Fix the missing underscore in __ARMEB__ macro usage

Message ID 1382957121-10435-1-git-send-email-r.sricharan@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

R Sricharan Oct. 28, 2013, 10:45 a.m. UTC
Commit 'f52bb722547f43caeaecbcc62db9f3c3b80ead9b'
Author: Sricharan R <r.sricharan@ti.com>
    ARM: mm: Correct virt_to_phys patching for 64 bit physical addresses

introduced a __ARMEB__ macro usage in a new place, but missed the second
underscore. So correcting it here.

Cc: Russell King <linux@arm.linux.org.uk>

Signed-off-by: Sricharan R <r.sricharan@ti.com>
---
 arch/arm/kernel/head.S |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Russell King - ARM Linux Oct. 28, 2013, 11:15 p.m. UTC | #1
Please send it to the patch system, thanks.

On Mon, Oct 28, 2013 at 04:15:21PM +0530, Sricharan R wrote:
> Commit 'f52bb722547f43caeaecbcc62db9f3c3b80ead9b'
> Author: Sricharan R <r.sricharan@ti.com>
>     ARM: mm: Correct virt_to_phys patching for 64 bit physical addresses
> 
> introduced a __ARMEB__ macro usage in a new place, but missed the second
> underscore. So correcting it here.
> 
> Cc: Russell King <linux@arm.linux.org.uk>
> 
> Signed-off-by: Sricharan R <r.sricharan@ti.com>
> ---
>  arch/arm/kernel/head.S |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/kernel/head.S b/arch/arm/kernel/head.S
> index 0f6c6d1..0fdd318f 100644
> --- a/arch/arm/kernel/head.S
> +++ b/arch/arm/kernel/head.S
> @@ -555,7 +555,7 @@ ENTRY(fixup_smp)
>  	ldmfd	sp!, {r4 - r6, pc}
>  ENDPROC(fixup_smp)
>  
> -#ifdef __ARMEB_
> +#ifdef __ARMEB__
>  #define LOW_OFFSET	0x4
>  #define HIGH_OFFSET	0x0
>  #else
> -- 
> 1.7.9.5
>
diff mbox

Patch

diff --git a/arch/arm/kernel/head.S b/arch/arm/kernel/head.S
index 0f6c6d1..0fdd318f 100644
--- a/arch/arm/kernel/head.S
+++ b/arch/arm/kernel/head.S
@@ -555,7 +555,7 @@  ENTRY(fixup_smp)
 	ldmfd	sp!, {r4 - r6, pc}
 ENDPROC(fixup_smp)
 
-#ifdef __ARMEB_
+#ifdef __ARMEB__
 #define LOW_OFFSET	0x4
 #define HIGH_OFFSET	0x0
 #else