linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [trivial] treewide: Fix typos in Kconfig
@ 2014-09-18  3:09 Masanari Iida
  2014-09-18  6:22 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Masanari Iida @ 2014-09-18  3:09 UTC (permalink / raw)
  To: linux-kernel, trivial, rdunlap; +Cc: realmz6, tglx, jason, Masanari Iida

This patch fix spelling typos found in Kconfig.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 arch/blackfin/Kconfig           | 2 +-
 arch/mips/cavium-octeon/Kconfig | 2 +-
 drivers/i2c/busses/Kconfig      | 2 +-
 drivers/irqchip/Kconfig         | 2 +-
 drivers/platform/x86/Kconfig    | 8 ++++----
 drivers/usb/host/Kconfig        | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
index ed30699..af76634 100644
--- a/arch/blackfin/Kconfig
+++ b/arch/blackfin/Kconfig
@@ -671,7 +671,7 @@ config TICKSOURCE_CORETMR
 	default y
 endmenu
 
-menu "Clock souce"
+menu "Clock source"
 	depends on GENERIC_CLOCKEVENTS
 config CYCLES_CLOCKSOURCE
 	bool "CYCLES"
diff --git a/arch/mips/cavium-octeon/Kconfig b/arch/mips/cavium-octeon/Kconfig
index 6028666..c370426 100644
--- a/arch/mips/cavium-octeon/Kconfig
+++ b/arch/mips/cavium-octeon/Kconfig
@@ -1,7 +1,7 @@
 if CPU_CAVIUM_OCTEON
 
 config CAVIUM_CN63XXP1
-	bool "Enable CN63XXP1 errata worarounds"
+	bool "Enable CN63XXP1 errata workarounds"
 	default "n"
 	help
 	  The CN63XXP1 chip requires build time workarounds to
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 2ac87fa..2e45ae3 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -357,7 +357,7 @@ config I2C_BCM_KONA
 	  If you say yes to this option, support will be included for the
 	  I2C interface on the Broadcom Kona family of processors.
 
-	  If you do not need KONA I2C inteface, say N.
+	  If you do not need KONA I2C interface, say N.
 
 config I2C_BLACKFIN_TWI
 	tristate "Blackfin TWI I2C support"
diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
index b8632bf..a31a9e4 100644
--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -109,7 +109,7 @@ config XTENSA_MX
 config IRQ_CROSSBAR
 	bool
 	help
-	  Support for a CROSSBAR ip that preceeds the main interrupt controller.
+	  Support for a CROSSBAR ip that precedes the main interrupt controller.
 	  The primary irqchip invokes the crossbar's callback which inturn allocates
 	  a free irq and configures the IP. Thus the peripheral interrupts are
 	  routed to one of the free irqchip interrupt lines.
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index 3bbcbf1..4dd2cd8 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -540,7 +540,7 @@ config ASUS_NB_WMI
 	  This is a driver for newer Asus notebooks. It adds extra features
 	  like wireless radio and bluetooth control, leds, hotkeys, backlight...
 
-	  For more informations, see
+	  For more information, see
 	  <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
 
 	  If you have an ACPI-WMI compatible Asus Notebook, say Y or M
@@ -553,7 +553,7 @@ config EEEPC_WMI
 	  This is a driver for newer Eee PC laptops. It adds extra features
 	  like wireless radio and bluetooth control, leds, hotkeys, backlight...
 
-	  For more informations, see
+	  For more information, see
 	  <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
 
 	  If you have an ACPI-WMI compatible Eee PC laptop (>= 1000), say Y or M
@@ -657,7 +657,7 @@ config TOSHIBA_HAPS
 	depends on ACPI
 	---help---
 	  This driver adds support for the built-in accelerometer
-	  found on recent Toshiba laptops equiped with HID TOS620A
+	  found on recent Toshiba laptops equipped with HID TOS620A
 	  device.
 
 	  This driver receives ACPI notify events 0x80 when the sensor
@@ -666,7 +666,7 @@ config TOSHIBA_HAPS
 	  been stabilized.
 
 	  Also provides sysfs entries to get/set the desired protection
-	  level and reseting the HDD protection interface.
+	  level and resetting the HDD protection interface.
 
 	  If you have a recent Toshiba laptop with a built-in accelerometer
 	  device, say Y.
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 82800a7..56f4336 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -126,7 +126,7 @@ config XPS_USB_HCD_XILINX
 	select USB_EHCI_BIG_ENDIAN_DESC
 	select USB_EHCI_BIG_ENDIAN_MMIO
 	---help---
-		Xilinx xps USB host controller core is EHCI compilant and has
+		Xilinx xps USB host controller core is EHCI compliant and has
 		transaction translator built-in. It can be configured to either
 		support both high speed and full speed devices, or high speed
 		devices only.
-- 
2.1.0.238.gce1d3a9


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

* Re: [PATCH] [trivial] treewide: Fix typos in Kconfig
  2014-09-18  3:09 [PATCH] [trivial] treewide: Fix typos in Kconfig Masanari Iida
@ 2014-09-18  6:22 ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2014-09-18  6:22 UTC (permalink / raw)
  To: Masanari Iida, linux-kernel, trivial; +Cc: realmz6, tglx, jason

On 09/17/14 20:09, Masanari Iida wrote:
> This patch fix spelling typos found in Kconfig.
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

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

Thanks.

> ---
>  arch/blackfin/Kconfig           | 2 +-
>  arch/mips/cavium-octeon/Kconfig | 2 +-
>  drivers/i2c/busses/Kconfig      | 2 +-
>  drivers/irqchip/Kconfig         | 2 +-
>  drivers/platform/x86/Kconfig    | 8 ++++----
>  drivers/usb/host/Kconfig        | 2 +-
>  6 files changed, 9 insertions(+), 9 deletions(-)


-- 
~Randy

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

* Re: [PATCH] [trivial] treewide: Fix typos in Kconfig
  2018-01-26 12:57 Masanari Iida
@ 2018-01-26 18:14 ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2018-01-26 18:14 UTC (permalink / raw)
  To: Masanari Iida, trivial, linux-kernel

On 01/26/2018 04:57 AM, Masanari Iida wrote:
> This patch fixes spelling typos found in Kconfig.
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

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

One comment below.

> ---
>  arch/arc/Kconfig                  | 4 ++--
>  arch/arm/mach-s3c24xx/Kconfig     | 2 +-
>  arch/arm/mach-s3c64xx/Kconfig     | 2 +-
>  arch/arm/plat-samsung/Kconfig     | 4 ++--
>  arch/arm64/Kconfig                | 2 +-
>  arch/arm64/Kconfig.platforms      | 2 +-
>  arch/powerpc/Kconfig              | 2 +-
>  drivers/clk/mediatek/Kconfig      | 2 +-
>  drivers/input/touchscreen/Kconfig | 2 +-
>  drivers/iommu/Kconfig             | 2 +-
>  drivers/mailbox/Kconfig           | 2 +-
>  drivers/platform/x86/Kconfig      | 2 +-
>  fs/nfsd/Kconfig                   | 4 ++--
>  lib/Kconfig                       | 4 ++--
>  14 files changed, 18 insertions(+), 18 deletions(-)
> 
> diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
> index 9d5fd00d9e91..f5855b706c08 100644
> --- a/arch/arc/Kconfig
> +++ b/arch/arc/Kconfig
> @@ -375,7 +375,7 @@ config ARC_FPU_SAVE_RESTORE
>  	  need to be saved/restored across context-switch.
>  	  Note that ARC FPU is overly simplistic, unlike say x86, which has
>  	  hardware pieces to allow software to conditionally save/restore,
> -	  based on actual usage of FPU by a task. Thus our implemn does
> +	  based on actual usage of FPU by a task. Thus our implement does

That might be "implementation" instead, but this is still better than it was.

>  	  this for all tasks in system.
>  
>  endif	#ISA_ARCOMPACT

thanks,
-- 
~Randy

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

* [PATCH] [trivial] treewide: Fix typos in Kconfig
@ 2018-01-26 12:57 Masanari Iida
  2018-01-26 18:14 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Masanari Iida @ 2018-01-26 12:57 UTC (permalink / raw)
  To: trivial, linux-kernel, rdunlap; +Cc: Masanari Iida

This patch fixes spelling typos found in Kconfig.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 arch/arc/Kconfig                  | 4 ++--
 arch/arm/mach-s3c24xx/Kconfig     | 2 +-
 arch/arm/mach-s3c64xx/Kconfig     | 2 +-
 arch/arm/plat-samsung/Kconfig     | 4 ++--
 arch/arm64/Kconfig                | 2 +-
 arch/arm64/Kconfig.platforms      | 2 +-
 arch/powerpc/Kconfig              | 2 +-
 drivers/clk/mediatek/Kconfig      | 2 +-
 drivers/input/touchscreen/Kconfig | 2 +-
 drivers/iommu/Kconfig             | 2 +-
 drivers/mailbox/Kconfig           | 2 +-
 drivers/platform/x86/Kconfig      | 2 +-
 fs/nfsd/Kconfig                   | 4 ++--
 lib/Kconfig                       | 4 ++--
 14 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
index 9d5fd00d9e91..f5855b706c08 100644
--- a/arch/arc/Kconfig
+++ b/arch/arc/Kconfig
@@ -144,7 +144,7 @@ config ARC_CPU_770
 	  Support for ARC770 core introduced with Rel 4.10 (Summer 2011)
 	  This core has a bunch of cool new features:
 	  -MMU-v3: Variable Page Sz (4k, 8k, 16k), bigger J-TLB (128x4)
-                   Shared Address Spaces (for sharing TLB entires in MMU)
+                   Shared Address Spaces (for sharing TLB entries in MMU)
 	  -Caches: New Prog Model, Region Flush
 	  -Insns: endian swap, load-locked/store-conditional, time-stamp-ctr
 
@@ -375,7 +375,7 @@ config ARC_FPU_SAVE_RESTORE
 	  need to be saved/restored across context-switch.
 	  Note that ARC FPU is overly simplistic, unlike say x86, which has
 	  hardware pieces to allow software to conditionally save/restore,
-	  based on actual usage of FPU by a task. Thus our implemn does
+	  based on actual usage of FPU by a task. Thus our implement does
 	  this for all tasks in system.
 
 endif	#ISA_ARCOMPACT
diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
index b198be7d32b6..da0bdbede539 100644
--- a/arch/arm/mach-s3c24xx/Kconfig
+++ b/arch/arm/mach-s3c24xx/Kconfig
@@ -239,7 +239,7 @@ config MACH_N30
 	select S3C_DEV_NAND
 	select S3C_DEV_USB_HOST
 	help
-	  Say Y here if you want suppt for the Acer N30, Acer N35,
+	  Say Y here if you want support for the Acer N30, Acer N35,
 	  Navman PiN570, Yakumo AlphaX or Airis NC05 PDAs.
 
 config MACH_OTOM
diff --git a/arch/arm/mach-s3c64xx/Kconfig b/arch/arm/mach-s3c64xx/Kconfig
index afd1f20be49e..64b333936336 100644
--- a/arch/arm/mach-s3c64xx/Kconfig
+++ b/arch/arm/mach-s3c64xx/Kconfig
@@ -106,7 +106,7 @@ config S3C64XX_SETUP_USB_PHY
 	help
 	  Common setup code for USB PHY controller
 
-# S36400 Macchine support
+# S36400 Machine support
 
 config MACH_SMDK6400
        bool "SMDK6400"
diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig
index 8d4a64cc644c..2a84cdfa0a33 100644
--- a/arch/arm/plat-samsung/Kconfig
+++ b/arch/arm/plat-samsung/Kconfig
@@ -156,7 +156,7 @@ config S3C_DEV_WDT
 	bool
 	default y if ARCH_S3C24XX
 	help
-	  Complie in platform device definition for Watchdog Timer
+	  Compile in platform device definition for Watchdog Timer
 
 config S3C_DEV_NAND
 	bool
@@ -171,7 +171,7 @@ config S3C_DEV_ONENAND
 config S3C_DEV_RTC
 	bool
 	help
-	  Complie in platform device definition for RTC
+	  Compile in platform device definition for RTC
 
 config SAMSUNG_DEV_ADC
 	bool
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index c9a7e9e1414f..abbb6925fb0c 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -570,7 +570,7 @@ config HISILICON_ERRATUM_161600802
 	bool "Hip07 161600802: Erroneous redistributor VLPI base"
 	default y
 	help
-	  The HiSilicon Hip07 SoC usees the wrong redistributor base
+	  The HiSilicon Hip07 SoC uses the wrong redistributor base
 	  when issued ITS commands such as VMOVP and VMAPP, and requires
 	  a 128kB offset to be applied to the target address in this commands.
 
diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index 2401373565ff..88ec71ec30e2 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -126,7 +126,7 @@ config ARCH_MVEBU
 	select PINCTRL_ARMADA_AP806
 	select PINCTRL_ARMADA_CP110
 	help
-	  This enables support for Marvell EBU familly, including:
+	  This enables support for Marvell EBU family, including:
 	   - Armada 3700 SoC Family
 	   - Armada 7K SoC Family
 	   - Armada 8K SoC Family
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 2ed525a44734..48df30fc4594 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -94,7 +94,7 @@ config PPC_WATCHDOG
 	help
 	  This is a placeholder when the powerpc hardlockup detector
 	  watchdog is selected (arch/powerpc/kernel/watchdog.c). It is
-	  seleted via the generic lockup detector menu which is why we
+	  selected via the generic lockup detector menu which is why we
 	  have no standalone config option for it here.
 
 config STACKTRACE_SUPPORT
diff --git a/drivers/clk/mediatek/Kconfig b/drivers/clk/mediatek/Kconfig
index 59dc0aad553c..fa47594d7b88 100644
--- a/drivers/clk/mediatek/Kconfig
+++ b/drivers/clk/mediatek/Kconfig
@@ -139,7 +139,7 @@ config COMMON_CLK_MT7622
 	default ARCH_MEDIATEK
 	---help---
 	  This driver supports MediaTek MT7622 basic clocks and clocks
-	  required for various periperals found on MediaTek.
+	  required for various peripherals found on MediaTek.
 
 config COMMON_CLK_MT7622_ETHSYS
 	bool "Clock driver for MediaTek MT7622 ETHSYS"
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
index 38a226f9fcbd..1a5d21b251c1 100644
--- a/drivers/input/touchscreen/Kconfig
+++ b/drivers/input/touchscreen/Kconfig
@@ -362,7 +362,7 @@ config TOUCHSCREEN_HIDEEP
 
 	  If unsure, say N.
 
-	  To compile this driver as a moudle, choose M here : the
+	  To compile this driver as a module, choose M here : the
 	  module will be called hideep_ts.
 
 config TOUCHSCREEN_ILI210X
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index f3a21343e636..5e3126348710 100644
--- a/drivers/iommu/Kconfig
+++ b/drivers/iommu/Kconfig
@@ -365,7 +365,7 @@ config MTK_IOMMU_V1
 	select MTK_SMI
 	help
 	  Support for the M4U on certain Mediatek SoCs. M4U generation 1 HW is
-	  Multimedia Memory Managememt Unit. This option enables remapping of
+	  Multimedia Memory Management Unit. This option enables remapping of
 	  DMA memory accesses for the multimedia subsystem.
 
 	  if unsure, say N here.
diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig
index ba2f1525f4ee..960bb98399e5 100644
--- a/drivers/mailbox/Kconfig
+++ b/drivers/mailbox/Kconfig
@@ -54,7 +54,7 @@ config OMAP_MBOX_KFIFO_SIZE
 	  module parameter).
 
 config ROCKCHIP_MBOX
-	bool "Rockchip Soc Intergrated Mailbox Support"
+	bool "Rockchip Soc Integrated Mailbox Support"
 	depends on ARCH_ROCKCHIP || COMPILE_TEST
 	help
 	  This driver provides support for inter-processor communication
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index 2c745e8ccad6..acf261dfe7b4 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -1054,7 +1054,7 @@ config INTEL_RST
         tristate "Intel Rapid Start Technology Driver"
 	depends on ACPI
 	---help---
-	  This driver provides support for modifying paramaters on systems
+	  This driver provides support for modifying parameters on systems
 	  equipped with Intel's Rapid Start Technology. When put in an ACPI
 	  sleep state, these devices will wake after either a configured
 	  timeout or when the system battery reaches a critical state,
diff --git a/fs/nfsd/Kconfig b/fs/nfsd/Kconfig
index 20b1c17320d5..1d9ff80c4872 100644
--- a/fs/nfsd/Kconfig
+++ b/fs/nfsd/Kconfig
@@ -94,7 +94,7 @@ config NFSD_BLOCKLAYOUT
 	help
 	  This option enables support for the exporting pNFS block layouts
 	  in the kernel's NFS server. The pNFS block layout enables NFS
-	  clients to directly perform I/O to block devices accesible to both
+	  clients to directly perform I/O to block devices accessible to both
 	  the server and the clients.  See RFC 5663 for more details.
 
 	  If unsure, say N.
@@ -108,7 +108,7 @@ config NFSD_SCSILAYOUT
 	help
 	  This option enables support for the exporting pNFS SCSI layouts
 	  in the kernel's NFS server. The pNFS SCSI layout enables NFS
-	  clients to directly perform I/O to SCSI devices accesible to both
+	  clients to directly perform I/O to SCSI devices accessible to both
 	  the server and the clients.  See draft-ietf-nfsv4-scsi-layout for
 	  more details.
 
diff --git a/lib/Kconfig b/lib/Kconfig
index c5e84fbcb30b..baa0da3bb463 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -544,13 +544,13 @@ config SG_SPLIT
 	help
 	 Provides a helper to split scatterlists into chunks, each chunk being
 	 a scatterlist. This should be selected by a driver or an API which
-	 whishes to split a scatterlist amongst multiple DMA channels.
+	 wishes to split a scatterlist amongst multiple DMA channels.
 
 config SG_POOL
 	def_bool n
 	help
 	 Provides a helper to allocate chained scatterlists. This should be
-	 selected by a driver or an API which whishes to allocate chained
+	 selected by a driver or an API which wishes to allocate chained
 	 scatterlist.
 
 #
-- 
2.16.0

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

end of thread, other threads:[~2018-01-26 18:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-18  3:09 [PATCH] [trivial] treewide: Fix typos in Kconfig Masanari Iida
2014-09-18  6:22 ` Randy Dunlap
2018-01-26 12:57 Masanari Iida
2018-01-26 18:14 ` 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).