2021-10-30 00:35:32

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH] ARC: thread_info.h: correct two typos in a comment

Fix typos of "separately" and "remains".

Signed-off-by: Randy Dunlap <[email protected]>
Suggested-by: Matthew Wilcox <[email protected]> # "remains"
Cc: Vineet Gupta <[email protected]>
Cc: [email protected]
---
arch/arc/include/asm/thread_info.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20211029.orig/arch/arc/include/asm/thread_info.h
+++ linux-next-20211029/arch/arc/include/asm/thread_info.h
@@ -99,8 +99,8 @@ static inline __attribute_const__ struct

/*
* _TIF_ALLWORK_MASK includes SYSCALL_TRACE, but we don't need it.
- * SYSCALL_TRACE is anyway seperately/unconditionally tested right after a
- * syscall, so all that reamins to be tested is _TIF_WORK_MASK
+ * SYSCALL_TRACE is anyway separately/unconditionally tested right after a
+ * syscall, so all that remains to be tested is _TIF_WORK_MASK
*/

#endif /* _ASM_THREAD_INFO_H */


2021-10-30 17:42:25

by Vineet Gupta

[permalink] [raw]
Subject: Re: [PATCH] ARC: thread_info.h: correct two typos in a comment


On 10/29/21 5:31 PM, Randy Dunlap wrote:
> Fix typos of "separately" and "remains".
>
> Signed-off-by: Randy Dunlap <[email protected]>
> Suggested-by: Matthew Wilcox <[email protected]> # "remains"
> Cc: Vineet Gupta <[email protected]>
> Cc: [email protected]

Thx for the fix. Added to for-curr.

-Vineet