linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] arm64: delete duplicated words
@ 2020-07-26  0:32 Randy Dunlap
  2020-07-26  0:32 ` [PATCH 1/3] arm64: pgtable-hwdef.h: " Randy Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-07-26  0:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Catalin Marinas, Randy Dunlap, Will Deacon, linux-arm-kernel

Delete duplicated words in arch/arm64/ header files.

Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org

 arch/arm64/include/asm/pgtable-hwdef.h   |    4 ++--
 arch/arm64/include/asm/ptrace.h          |    2 +-
 arch/arm64/include/uapi/asm/sigcontext.h |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

_______________________________________________
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] 4+ messages in thread

* [PATCH 1/3] arm64: pgtable-hwdef.h: delete duplicated words
  2020-07-26  0:32 [PATCH 0/3] arm64: delete duplicated words Randy Dunlap
@ 2020-07-26  0:32 ` Randy Dunlap
  2020-07-26  0:32 ` [PATCH 2/3] arm64: ptrace.h: delete duplicated word Randy Dunlap
  2020-07-26  0:32 ` [PATCH 3/3] arm64: sigcontext.h: " Randy Dunlap
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-07-26  0:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Catalin Marinas, Randy Dunlap, Will Deacon, linux-arm-kernel

Drop the repeated words "at" and "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org
---
 arch/arm64/include/asm/pgtable-hwdef.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20200720.orig/arch/arm64/include/asm/pgtable-hwdef.h
+++ linux-next-20200720/arch/arm64/include/asm/pgtable-hwdef.h
@@ -29,7 +29,7 @@
  * Size mapped by an entry at level n ( 0 <= n <= 3)
  * We map (PAGE_SHIFT - 3) at all translation levels and PAGE_SHIFT bits
  * in the final page. The maximum number of translation levels supported by
- * the architecture is 4. Hence, starting at at level n, we have further
+ * the architecture is 4. Hence, starting at level n, we have further
  * ((4 - n) - 1) levels of translation excluding the offset within the page.
  * So, the total number of bits mapped by an entry at level n is :
  *
@@ -98,7 +98,7 @@
 #define CONT_PMDS		(1 << (CONT_PMD_SHIFT - PMD_SHIFT))
 #define CONT_PMD_SIZE		(CONT_PMDS * PMD_SIZE)
 #define CONT_PMD_MASK		(~(CONT_PMD_SIZE - 1))
-/* the the numerical offset of the PTE within a range of CONT_PTES */
+/* the numerical offset of the PTE within a range of CONT_PTES */
 #define CONT_RANGE_OFFSET(addr) (((addr)>>PAGE_SHIFT)&(CONT_PTES-1))
 
 /*

_______________________________________________
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] 4+ messages in thread

* [PATCH 2/3] arm64: ptrace.h: delete duplicated word
  2020-07-26  0:32 [PATCH 0/3] arm64: delete duplicated words Randy Dunlap
  2020-07-26  0:32 ` [PATCH 1/3] arm64: pgtable-hwdef.h: " Randy Dunlap
@ 2020-07-26  0:32 ` Randy Dunlap
  2020-07-26  0:32 ` [PATCH 3/3] arm64: sigcontext.h: " Randy Dunlap
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-07-26  0:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Catalin Marinas, Randy Dunlap, Will Deacon, linux-arm-kernel

Drop the repeated word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org
---
 arch/arm64/include/asm/ptrace.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200720.orig/arch/arm64/include/asm/ptrace.h
+++ linux-next-20200720/arch/arm64/include/asm/ptrace.h
@@ -27,7 +27,7 @@
  *
  * Some code sections either automatically switch back to PSR.I or explicitly
  * require to not use priority masking. If bit GIC_PRIO_PSR_I_SET is included
- * in the  the priority mask, it indicates that PSR.I should be set and
+ * in the priority mask, it indicates that PSR.I should be set and
  * interrupt disabling temporarily does not rely on IRQ priorities.
  */
 #define GIC_PRIO_IRQON			0xe0

_______________________________________________
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] 4+ messages in thread

* [PATCH 3/3] arm64: sigcontext.h: delete duplicated word
  2020-07-26  0:32 [PATCH 0/3] arm64: delete duplicated words Randy Dunlap
  2020-07-26  0:32 ` [PATCH 1/3] arm64: pgtable-hwdef.h: " Randy Dunlap
  2020-07-26  0:32 ` [PATCH 2/3] arm64: ptrace.h: delete duplicated word Randy Dunlap
@ 2020-07-26  0:32 ` Randy Dunlap
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-07-26  0:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Catalin Marinas, Randy Dunlap, Will Deacon, linux-arm-kernel

Drop the repeated word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org
---
 arch/arm64/include/uapi/asm/sigcontext.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200720.orig/arch/arm64/include/uapi/asm/sigcontext.h
+++ linux-next-20200720/arch/arm64/include/uapi/asm/sigcontext.h
@@ -179,7 +179,7 @@ struct sve_context {
  * The same convention applies when returning from a signal: a caller
  * will need to remove or resize the sve_context block if it wants to
  * make the SVE registers live when they were previously non-live or
- * vice-versa.  This may require the the caller to allocate fresh
+ * vice-versa.  This may require the caller to allocate fresh
  * memory and/or move other context blocks in the signal frame.
  *
  * Changing the vector length during signal return is not permitted:

_______________________________________________
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] 4+ messages in thread

end of thread, other threads:[~2020-07-26  0:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-26  0:32 [PATCH 0/3] arm64: delete duplicated words Randy Dunlap
2020-07-26  0:32 ` [PATCH 1/3] arm64: pgtable-hwdef.h: " Randy Dunlap
2020-07-26  0:32 ` [PATCH 2/3] arm64: ptrace.h: delete duplicated word Randy Dunlap
2020-07-26  0:32 ` [PATCH 3/3] arm64: sigcontext.h: " 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).