All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: remove gratuitious/stray .ltorg stanzas
@ 2020-03-04  9:35 Rémi Denis-Courmont
  2020-03-04 14:50 ` Mark Rutland
  2020-03-04 15:54 ` Catalin Marinas
  0 siblings, 2 replies; 3+ messages in thread
From: Rémi Denis-Courmont @ 2020-03-04  9:35 UTC (permalink / raw)
  To: linux-arm-kernel

From: Remi Denis-Courmont <remi.denis.courmont@huawei.com>

There are no applicable literals above them.

Signed-off-by: Remi Denis-Courmont <remi.denis.courmont@huawei.com>
---
 arch/arm64/kernel/head.S          | 1 -
 arch/arm64/kernel/hibernate-asm.S | 2 --
 2 files changed, 3 deletions(-)

diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S
index fbc7e7fe4b3b..873eada595a5 100644
--- a/arch/arm64/kernel/head.S
+++ b/arch/arm64/kernel/head.S
@@ -404,7 +404,6 @@ __create_page_tables:
 
 	ret	x28
 ENDPROC(__create_page_tables)
-	.ltorg
 
 /*
  * The following fragment of code is executed with the MMU enabled.
diff --git a/arch/arm64/kernel/hibernate-asm.S b/arch/arm64/kernel/hibernate-asm.S
index 38bcd4d4e43b..6532105b3e32 100644
--- a/arch/arm64/kernel/hibernate-asm.S
+++ b/arch/arm64/kernel/hibernate-asm.S
@@ -110,8 +110,6 @@ ENTRY(swsusp_arch_suspend_exit)
 	cbz	x24, 3f		/* Do we need to re-initialise EL2? */
 	hvc	#0
 3:	ret
-
-	.ltorg
 ENDPROC(swsusp_arch_suspend_exit)
 
 /*
-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: remove gratuitious/stray .ltorg stanzas
  2020-03-04  9:35 [PATCH] arm64: remove gratuitious/stray .ltorg stanzas Rémi Denis-Courmont
@ 2020-03-04 14:50 ` Mark Rutland
  2020-03-04 15:54 ` Catalin Marinas
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Rutland @ 2020-03-04 14:50 UTC (permalink / raw)
  To: Rémi Denis-Courmont
  Cc: catalin.marinas, will, james.morse, linux-arm-kernel

On Wed, Mar 04, 2020 at 11:35:46AM +0200, Rémi Denis-Courmont wrote:
> From: Remi Denis-Courmont <remi.denis.courmont@huawei.com>
> 
> There are no applicable literals above them.
> 
> Signed-off-by: Remi Denis-Courmont <remi.denis.courmont@huawei.com>

Looks sound to me, so:

Acked-by: Mark Rutland <mark.rutland@arm.com>

Mark.

> ---
>  arch/arm64/kernel/head.S          | 1 -
>  arch/arm64/kernel/hibernate-asm.S | 2 --
>  2 files changed, 3 deletions(-)
> 
> diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S
> index fbc7e7fe4b3b..873eada595a5 100644
> --- a/arch/arm64/kernel/head.S
> +++ b/arch/arm64/kernel/head.S
> @@ -404,7 +404,6 @@ __create_page_tables:
>  
>  	ret	x28
>  ENDPROC(__create_page_tables)
> -	.ltorg
>  
>  /*
>   * The following fragment of code is executed with the MMU enabled.
> diff --git a/arch/arm64/kernel/hibernate-asm.S b/arch/arm64/kernel/hibernate-asm.S
> index 38bcd4d4e43b..6532105b3e32 100644
> --- a/arch/arm64/kernel/hibernate-asm.S
> +++ b/arch/arm64/kernel/hibernate-asm.S
> @@ -110,8 +110,6 @@ ENTRY(swsusp_arch_suspend_exit)
>  	cbz	x24, 3f		/* Do we need to re-initialise EL2? */
>  	hvc	#0
>  3:	ret
> -
> -	.ltorg
>  ENDPROC(swsusp_arch_suspend_exit)
>  
>  /*
> -- 
> 2.25.1
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: remove gratuitious/stray .ltorg stanzas
  2020-03-04  9:35 [PATCH] arm64: remove gratuitious/stray .ltorg stanzas Rémi Denis-Courmont
  2020-03-04 14:50 ` Mark Rutland
@ 2020-03-04 15:54 ` Catalin Marinas
  1 sibling, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2020-03-04 15:54 UTC (permalink / raw)
  To: Rémi Denis-Courmont; +Cc: linux-arm-kernel

On Wed, Mar 04, 2020 at 11:35:46AM +0200, Rémi Denis-Courmont wrote:
> From: Remi Denis-Courmont <remi.denis.courmont@huawei.com>
> 
> There are no applicable literals above them.
> 
> Signed-off-by: Remi Denis-Courmont <remi.denis.courmont@huawei.com>

Queued for 5.7. Thanks.

-- 
Catalin

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-04 15:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-04  9:35 [PATCH] arm64: remove gratuitious/stray .ltorg stanzas Rémi Denis-Courmont
2020-03-04 14:50 ` Mark Rutland
2020-03-04 15:54 ` Catalin Marinas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.