The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] ARM: Fix double word in comments
@ 2022-08-15 20:00 Xin Gao
  2022-08-15 23:21 ` Robin Murphy
  0 siblings, 1 reply; 3+ messages in thread
From: Xin Gao @ 2022-08-15 20:00 UTC (permalink / raw)
  To: daniel, haojian.zhuang, robert.jarzmik
  Cc: linux, linux-arm-kernel, linux-kernel, Xin Gao

Delete repeated word "in" in comments.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 arch/arm/mach-pxa/palm27x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-pxa/palm27x.c b/arch/arm/mach-pxa/palm27x.c
index 1a8d25eecac3..116183859357 100644
--- a/arch/arm/mach-pxa/palm27x.c
+++ b/arch/arm/mach-pxa/palm27x.c
@@ -160,7 +160,7 @@ void __init palm27x_lcd_init(int power, struct pxafb_mode_info *mode)
 #if	defined(CONFIG_USB_PXA27X) || \
 	defined(CONFIG_USB_PXA27X_MODULE)
 
-/* The actual GPIO offsets get filled in in the palm27x_udc_init() call */
+/* The actual GPIO offsets get filled in the palm27x_udc_init() call */
 static struct gpiod_lookup_table palm27x_udc_gpiod_table = {
 	.dev_id = "gpio-vbus",
 	.table = {
-- 
2.30.2


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

* Re: [PATCH] ARM: Fix double word in comments
  2022-08-15 20:00 [PATCH] ARM: Fix double word in comments Xin Gao
@ 2022-08-15 23:21 ` Robin Murphy
  0 siblings, 0 replies; 3+ messages in thread
From: Robin Murphy @ 2022-08-15 23:21 UTC (permalink / raw)
  To: Xin Gao, daniel, haojian.zhuang, robert.jarzmik
  Cc: linux, linux-arm-kernel, linux-kernel

On 2022-08-15 21:00, Xin Gao wrote:
> Delete repeated word "in" in comments.

It is not grammatically incorrect though. The second "in" is the 
preposition here, while the first is an adverb - "fill in" is a term in 
its own right, particularly in the context of information, whereas 
"fill" tends to suggest a more physical context. For instance, one might 
typically say "I filled the bottle" (with liquid), but "I filled in the 
application form" (with data).

Robin.

> Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
> ---
>   arch/arm/mach-pxa/palm27x.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-pxa/palm27x.c b/arch/arm/mach-pxa/palm27x.c
> index 1a8d25eecac3..116183859357 100644
> --- a/arch/arm/mach-pxa/palm27x.c
> +++ b/arch/arm/mach-pxa/palm27x.c
> @@ -160,7 +160,7 @@ void __init palm27x_lcd_init(int power, struct pxafb_mode_info *mode)
>   #if	defined(CONFIG_USB_PXA27X) || \
>   	defined(CONFIG_USB_PXA27X_MODULE)
>   
> -/* The actual GPIO offsets get filled in in the palm27x_udc_init() call */
> +/* The actual GPIO offsets get filled in the palm27x_udc_init() call */
>   static struct gpiod_lookup_table palm27x_udc_gpiod_table = {
>   	.dev_id = "gpio-vbus",
>   	.table = {

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

* [PATCH] arm: Fix double word in comments
@ 2025-10-29  7:18 Bo Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Bo Liu @ 2025-10-29  7:18 UTC (permalink / raw)
  To: linux; +Cc: linux-arm-kernel, linux-kernel, Bo Liu

Remove the repeated word "the" in comments.

Signed-off-by: Bo Liu <liubo03@inspur.com>
---
 arch/arm/Kconfig              | 4 ++--
 arch/arm/include/asm/unwind.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 9b4024b277d4..33bafc34baa5 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1482,7 +1482,7 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
 	bool "Extend with bootloader kernel arguments"
 	help
 	  The command-line arguments provided by the boot loader will be
-	  appended to the the device tree bootargs property.
+	  appended to the device tree bootargs property.
 
 endchoice
 
@@ -1624,7 +1624,7 @@ config DMI
 	  continue to boot on existing non-UEFI platforms.
 
 	  NOTE: This does *NOT* enable or encourage the use of DMI quirks,
-	  i.e., the the practice of identifying the platform via DMI to
+	  i.e., the practice of identifying the platform via DMI to
 	  decide whether certain workarounds for buggy hardware and/or
 	  firmware need to be enabled. This would require the DMI subsystem
 	  to be enabled much earlier than we do on ARM, which is non-trivial.
diff --git a/arch/arm/include/asm/unwind.h b/arch/arm/include/asm/unwind.h
index d60b09a5acfc..a75da9a01f91 100644
--- a/arch/arm/include/asm/unwind.h
+++ b/arch/arm/include/asm/unwind.h
@@ -10,7 +10,7 @@
 
 #ifndef __ASSEMBLY__
 
-/* Unwind reason code according the the ARM EABI documents */
+/* Unwind reason code according the ARM EABI documents */
 enum unwind_reason_code {
 	URC_OK = 0,			/* operation completed successfully */
 	URC_CONTINUE_UNWIND = 8,
-- 
2.31.1


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

end of thread, other threads:[~2025-10-29  7:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-15 20:00 [PATCH] ARM: Fix double word in comments Xin Gao
2022-08-15 23:21 ` Robin Murphy
  -- strict thread matches above, loose matches on Subject: below --
2025-10-29  7:18 [PATCH] arm: " Bo Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox