linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
@ 2021-03-14 22:04 Bhaskar Chowdhury
  2021-03-15  0:37 ` Randy Dunlap
  2021-03-31  1:09 ` Michael Ellerman
  0 siblings, 2 replies; 7+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-14 22:04 UTC (permalink / raw)
  To: mpe, benh, paulus, akpm, rppt, unixbhaskar, oss,
	christophe.leroy, linuxppc-dev, linux-kernel
  Cc: rdunlap


Trivial spelling fixes throughout the file.

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 arch/powerpc/kernel/head_fsl_booke.S | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
index fdd4d274c245..c6fcfca0b0d7 100644
--- a/arch/powerpc/kernel/head_fsl_booke.S
+++ b/arch/powerpc/kernel/head_fsl_booke.S
@@ -113,7 +113,7 @@ _ENTRY(_start);

 1:
 	/*
-	 * We have the runtime (virutal) address of our base.
+	 * We have the runtime (virtual) address of our base.
 	 * We calculate our shift of offset from a 64M page.
 	 * We could map the 64M page we belong to at PAGE_OFFSET and
 	 * get going from there.
@@ -403,7 +403,7 @@ interrupt_base:
 	EXCEPTION(0x2900, AP_UNAVAIL, AuxillaryProcessorUnavailable, \
 		  unknown_exception, EXC_XFER_STD)

-	/* Decrementer Interrupt */
+	/* Decremented Interrupt */
 	DECREMENTER_EXCEPTION

 	/* Fixed Internal Timer Interrupt */
@@ -497,7 +497,7 @@ END_BTB_FLUSH_SECTION
 #endif
 #endif

-	bne	2f			/* Bail if permission/valid mismach */
+	bne	2f			/* Bail if permission/valid mismatch */

 	/* Jump to common tlb load */
 	b	finish_tlb_load
@@ -592,7 +592,7 @@ END_BTB_FLUSH_SECTION
 #endif
 #endif

-	bne	2f			/* Bail if permission mismach */
+	bne	2f			/* Bail if permission mismatch */

 	/* Jump to common TLB load point */
 	b	finish_tlb_load
--
2.30.2


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

* Re: [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
  2021-03-14 22:04 [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S Bhaskar Chowdhury
@ 2021-03-15  0:37 ` Randy Dunlap
  2021-03-15  2:48   ` Michael Ellerman
  2021-03-31  1:09 ` Michael Ellerman
  1 sibling, 1 reply; 7+ messages in thread
From: Randy Dunlap @ 2021-03-15  0:37 UTC (permalink / raw)
  To: Bhaskar Chowdhury, mpe, benh, paulus, akpm, rppt, oss,
	christophe.leroy, linuxppc-dev, linux-kernel

On 3/14/21 3:04 PM, Bhaskar Chowdhury wrote:
> 
> Trivial spelling fixes throughout the file.
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>  arch/powerpc/kernel/head_fsl_booke.S | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
> index fdd4d274c245..c6fcfca0b0d7 100644
> --- a/arch/powerpc/kernel/head_fsl_booke.S
> +++ b/arch/powerpc/kernel/head_fsl_booke.S
> @@ -403,7 +403,7 @@ interrupt_base:
>  	EXCEPTION(0x2900, AP_UNAVAIL, AuxillaryProcessorUnavailable, \
>  		  unknown_exception, EXC_XFER_STD)
> 
> -	/* Decrementer Interrupt */
> +	/* Decremented Interrupt */

No, the comment matches the macro (or whatever that is).

>  	DECREMENTER_EXCEPTION
> 
>  	/* Fixed Internal Timer Interrupt */


-- 
~Randy


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

* Re: [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
  2021-03-15  0:37 ` Randy Dunlap
@ 2021-03-15  2:48   ` Michael Ellerman
  2021-03-15  3:26     ` Bhaskar Chowdhury
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Ellerman @ 2021-03-15  2:48 UTC (permalink / raw)
  To: Randy Dunlap, Bhaskar Chowdhury, benh, paulus, akpm, rppt, oss,
	christophe.leroy, linuxppc-dev, linux-kernel

Randy Dunlap <rdunlap@infradead.org> writes:
> On 3/14/21 3:04 PM, Bhaskar Chowdhury wrote:
>> 
>> Trivial spelling fixes throughout the file.
>> 
>> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
>> ---
>>  arch/powerpc/kernel/head_fsl_booke.S | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>> 
>> diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
>> index fdd4d274c245..c6fcfca0b0d7 100644
>> --- a/arch/powerpc/kernel/head_fsl_booke.S
>> +++ b/arch/powerpc/kernel/head_fsl_booke.S
>> @@ -403,7 +403,7 @@ interrupt_base:
>>  	EXCEPTION(0x2900, AP_UNAVAIL, AuxillaryProcessorUnavailable, \
>>  		  unknown_exception, EXC_XFER_STD)
>> 
>> -	/* Decrementer Interrupt */
>> +	/* Decremented Interrupt */
>
> No, the comment matches the macro (or whatever that is).

Right. I dropped this hunk. Please update your script or whatever to not
"correct" that spelling.

cheers

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

* Re: [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
  2021-03-15  2:48   ` Michael Ellerman
@ 2021-03-15  3:26     ` Bhaskar Chowdhury
  0 siblings, 0 replies; 7+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-15  3:26 UTC (permalink / raw)
  To: Michael Ellerman
  Cc: Randy Dunlap, benh, paulus, akpm, rppt, oss, christophe.leroy,
	linuxppc-dev, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1037 bytes --]

On 13:48 Mon 15 Mar 2021, Michael Ellerman wrote:
>Randy Dunlap <rdunlap@infradead.org> writes:
>> On 3/14/21 3:04 PM, Bhaskar Chowdhury wrote:
>>>
>>> Trivial spelling fixes throughout the file.
>>>
>>> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
>>> ---
>>>  arch/powerpc/kernel/head_fsl_booke.S | 8 ++++----
>>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
>>> index fdd4d274c245..c6fcfca0b0d7 100644
>>> --- a/arch/powerpc/kernel/head_fsl_booke.S
>>> +++ b/arch/powerpc/kernel/head_fsl_booke.S
>>> @@ -403,7 +403,7 @@ interrupt_base:
>>>  	EXCEPTION(0x2900, AP_UNAVAIL, AuxillaryProcessorUnavailable, \
>>>  		  unknown_exception, EXC_XFER_STD)
>>>
>>> -	/* Decrementer Interrupt */
>>> +	/* Decremented Interrupt */
>>
>> No, the comment matches the macro (or whatever that is).
>
>Right. I dropped this hunk. Please update your script or whatever to not
>"correct" that spelling.
>
Hmmmm ...V2 on the way...

>cheers

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
  2021-03-14 22:04 [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S Bhaskar Chowdhury
  2021-03-15  0:37 ` Randy Dunlap
@ 2021-03-31  1:09 ` Michael Ellerman
  1 sibling, 0 replies; 7+ messages in thread
From: Michael Ellerman @ 2021-03-31  1:09 UTC (permalink / raw)
  To: linuxppc-dev, Bhaskar Chowdhury, rppt, mpe, christophe.leroy,
	benh, linux-kernel, oss, paulus, akpm
  Cc: rdunlap

On Mon, 15 Mar 2021 03:34:36 +0530, Bhaskar Chowdhury wrote:
> Trivial spelling fixes throughout the file.

Applied to powerpc/next.

[1/1] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
      https://git.kernel.org/powerpc/c/f239873fcd953557ba9a9781d10ca95c0594e2b3

cheers

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

* Re: [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
  2021-03-15  3:37 Bhaskar Chowdhury
@ 2021-03-22 18:50 ` Randy Dunlap
  0 siblings, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2021-03-22 18:50 UTC (permalink / raw)
  To: Bhaskar Chowdhury, mpe, benh, paulus, rppt, akpm,
	christophe.leroy, oss, npiggin, linuxppc-dev, linux-kernel

On 3/14/21 8:37 PM, Bhaskar Chowdhury wrote:
> s/virutal/virtual/
> s/mismach/mismatch/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  As Randy pointed out I was changing the predefined macro name,so, reverted
>  or leave it alone.
>  Michael,sorry to run down a cold weave in your spine with my stupdity,this is
>  okay.
> 
>  arch/powerpc/kernel/head_fsl_booke.S | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
> index 3f4a40cccef5..a955403247f1 100644
> --- a/arch/powerpc/kernel/head_fsl_booke.S
> +++ b/arch/powerpc/kernel/head_fsl_booke.S
> @@ -113,7 +113,7 @@ _ENTRY(_start);
> 
>  1:
>  	/*
> -	 * We have the runtime (virutal) address of our base.
> +	 * We have the runtime (virtual) address of our base.
>  	 * We calculate our shift of offset from a 64M page.
>  	 * We could map the 64M page we belong to at PAGE_OFFSET and
>  	 * get going from there.
> @@ -497,7 +497,7 @@ END_BTB_FLUSH_SECTION
>  #endif
>  #endif
> 
> -	bne	2f			/* Bail if permission/valid mismach */
> +	bne	2f			/* Bail if permission/valid mismatch */
> 
>  	/* Jump to common tlb load */
>  	b	finish_tlb_load
> @@ -592,7 +592,7 @@ END_BTB_FLUSH_SECTION
>  #endif
>  #endif
> 
> -	bne	2f			/* Bail if permission mismach */
> +	bne	2f			/* Bail if permission mismatch */
> 
>  	/* Jump to common TLB load point */
>  	b	finish_tlb_load
> --
> 2.30.2
> 


-- 
~Randy


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

* [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
@ 2021-03-15  3:37 Bhaskar Chowdhury
  2021-03-22 18:50 ` Randy Dunlap
  0 siblings, 1 reply; 7+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-15  3:37 UTC (permalink / raw)
  To: mpe, benh, paulus, rppt, akpm, christophe.leroy, oss, npiggin,
	unixbhaskar, linuxppc-dev, linux-kernel
  Cc: rdunlap

s/virutal/virtual/
s/mismach/mismatch/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 As Randy pointed out I was changing the predefined macro name,so, reverted
 or leave it alone.
 Michael,sorry to run down a cold weave in your spine with my stupdity,this is
 okay.

 arch/powerpc/kernel/head_fsl_booke.S | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S
index 3f4a40cccef5..a955403247f1 100644
--- a/arch/powerpc/kernel/head_fsl_booke.S
+++ b/arch/powerpc/kernel/head_fsl_booke.S
@@ -113,7 +113,7 @@ _ENTRY(_start);

 1:
 	/*
-	 * We have the runtime (virutal) address of our base.
+	 * We have the runtime (virtual) address of our base.
 	 * We calculate our shift of offset from a 64M page.
 	 * We could map the 64M page we belong to at PAGE_OFFSET and
 	 * get going from there.
@@ -497,7 +497,7 @@ END_BTB_FLUSH_SECTION
 #endif
 #endif

-	bne	2f			/* Bail if permission/valid mismach */
+	bne	2f			/* Bail if permission/valid mismatch */

 	/* Jump to common tlb load */
 	b	finish_tlb_load
@@ -592,7 +592,7 @@ END_BTB_FLUSH_SECTION
 #endif
 #endif

-	bne	2f			/* Bail if permission mismach */
+	bne	2f			/* Bail if permission mismatch */

 	/* Jump to common TLB load point */
 	b	finish_tlb_load
--
2.30.2


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

end of thread, other threads:[~2021-03-31  1:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-14 22:04 [PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S Bhaskar Chowdhury
2021-03-15  0:37 ` Randy Dunlap
2021-03-15  2:48   ` Michael Ellerman
2021-03-15  3:26     ` Bhaskar Chowdhury
2021-03-31  1:09 ` Michael Ellerman
2021-03-15  3:37 Bhaskar Chowdhury
2021-03-22 18:50 ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).