linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8] net: Manufacturer names and spelling fixes
@ 2019-07-31 13:22 Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 1/8] net: 8390: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

	Hi David,

This is a set of fixes for (some blatantly) wrong manufacturer names and
various spelling issues, mostly in Kconfig help texts.

Thanks!

Geert Uytterhoeven (8):
  net: 8390: Fix manufacturer name in Kconfig help text
  net: amd: Spelling s/case/cause/
  net: apple: Fix manufacturer name in Kconfig help text
  net: broadcom: Fix manufacturer name in Kconfig help text
  net: ixp4xx: Spelling s/XSacle/XScale/
  net: nixge: Spelling s/Instrument/Instruments/
  net: packetengines: Fix manufacturer spelling and capitalization
  net: samsung: Spelling s/case/cause/

 drivers/net/ethernet/8390/Kconfig           | 4 ++--
 drivers/net/ethernet/amd/Kconfig            | 2 +-
 drivers/net/ethernet/apple/Kconfig          | 4 ++--
 drivers/net/ethernet/broadcom/Kconfig       | 6 +++---
 drivers/net/ethernet/ni/Kconfig             | 2 +-
 drivers/net/ethernet/packetengines/Kconfig  | 6 +++---
 drivers/net/ethernet/packetengines/Makefile | 2 +-
 drivers/net/ethernet/samsung/Kconfig        | 2 +-
 drivers/net/ethernet/xscale/Kconfig         | 2 +-
 9 files changed, 15 insertions(+), 15 deletions(-)

-- 
2.17.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* [PATCH 1/8] net: 8390: Fix manufacturer name in Kconfig help text
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 2/8] net: amd: Spelling s/case/cause/ Geert Uytterhoeven
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

The help text refers to Western Digital instead of National
Semiconductor 8390, presumably because it was copied from the former.

Fixes: 644570b830266ff3 ("8390: Move the 8390 related drivers")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/8390/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/8390/Kconfig b/drivers/net/ethernet/8390/Kconfig
index 2a3e2450968eeb06..a9478577b49560f2 100644
--- a/drivers/net/ethernet/8390/Kconfig
+++ b/drivers/net/ethernet/8390/Kconfig
@@ -12,8 +12,8 @@ config NET_VENDOR_8390
 
 	  Note that the answer to this question doesn't directly affect the
 	  kernel: saying N will just cause the configurator to skip all
-	  the questions about Western Digital cards. If you say Y, you will be
-	  asked for your specific card in the following questions.
+	  the questions about National Semiconductor 8390 cards. If you say Y,
+	  you will be asked for your specific card in the following questions.
 
 if NET_VENDOR_8390
 
-- 
2.17.1


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

* [PATCH 2/8] net: amd: Spelling s/case/cause/
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 1/8] net: 8390: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 3/8] net: apple: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/amd/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/amd/Kconfig b/drivers/net/ethernet/amd/Kconfig
index de4950d2022e0a6d..9f965cdfff5c99db 100644
--- a/drivers/net/ethernet/amd/Kconfig
+++ b/drivers/net/ethernet/amd/Kconfig
@@ -14,7 +14,7 @@ config NET_VENDOR_AMD
 	  say Y.
 
 	  Note that the answer to this question does not directly affect
-	  the kernel: saying N will just case the configurator to skip all
+	  the kernel: saying N will just cause the configurator to skip all
 	  the questions regarding AMD chipsets. If you say Y, you will be asked
 	  for your specific chipset/driver in the following questions.
 
-- 
2.17.1


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

* [PATCH 3/8] net: apple: Fix manufacturer name in Kconfig help text
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 1/8] net: 8390: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 2/8] net: amd: Spelling s/case/cause/ Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 4/8] net: broadcom: " Geert Uytterhoeven
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

The help text refers to IBM instead of Apple, presumably because it was
copied from the former.

Fixes: 8fb6b0908176704a ("bmac/mace/macmace/mac89x0/cs89x0: Move the Macintosh (Apple) drivers")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/apple/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/apple/Kconfig b/drivers/net/ethernet/apple/Kconfig
index fde7ae33e302b6bc..f78b9c841296c94b 100644
--- a/drivers/net/ethernet/apple/Kconfig
+++ b/drivers/net/ethernet/apple/Kconfig
@@ -11,8 +11,8 @@ config NET_VENDOR_APPLE
 	  If you have a network (Ethernet) card belonging to this class, say Y.
 
 	  Note that the answer to this question doesn't directly affect the
-	  kernel: saying N will just cause the configurator to skip all
-	  the questions about IBM devices. If you say Y, you will be asked for
+	  kernel: saying N will just cause the configurator to skip all the
+	  questions about Apple devices. If you say Y, you will be asked for
 	  your specific card in the following questions.
 
 if NET_VENDOR_APPLE
-- 
2.17.1


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

* [PATCH 4/8] net: broadcom: Fix manufacturer name in Kconfig help text
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 3/8] net: apple: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 5/8] net: ixp4xx: Spelling s/XSacle/XScale/ Geert Uytterhoeven
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

The help text refers to AMD instead of Broadcom, presumably because it
was copied from the former.

Fixes: adfc5217e9db68d3 ("broadcom: Move the Broadcom drivers")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/broadcom/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/Kconfig b/drivers/net/ethernet/broadcom/Kconfig
index e9017caf024dcf33..e24f5d2b6afe3547 100644
--- a/drivers/net/ethernet/broadcom/Kconfig
+++ b/drivers/net/ethernet/broadcom/Kconfig
@@ -14,9 +14,9 @@ config NET_VENDOR_BROADCOM
 	  say Y.
 
 	  Note that the answer to this question does not directly affect
-	  the kernel: saying N will just case the configurator to skip all
-	  the questions regarding AMD chipsets. If you say Y, you will be asked
-	  for your specific chipset/driver in the following questions.
+	  the kernel: saying N will just cause the configurator to skip all
+	  the questions regarding Broadcom chipsets. If you say Y, you will
+	  be asked for your specific chipset/driver in the following questions.
 
 if NET_VENDOR_BROADCOM
 
-- 
2.17.1


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

* [PATCH 5/8] net: ixp4xx: Spelling s/XSacle/XScale/
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (3 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 4/8] net: broadcom: " Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 6/8] net: nixge: Spelling s/Instrument/Instruments/ Geert Uytterhoeven
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/xscale/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/xscale/Kconfig b/drivers/net/ethernet/xscale/Kconfig
index 2f354ba029a61491..cd0a8f46e7c6c143 100644
--- a/drivers/net/ethernet/xscale/Kconfig
+++ b/drivers/net/ethernet/xscale/Kconfig
@@ -13,7 +13,7 @@ config NET_VENDOR_XSCALE
 
 	  Note that the answer to this question does not directly affect the
 	  kernel: saying N will just cause the configurator to skip all
-	  the questions about XSacle IXP devices. If you say Y, you will be
+	  the questions about XScale IXP devices. If you say Y, you will be
 	  asked for your specific card in the following questions.
 
 if NET_VENDOR_XSCALE
-- 
2.17.1


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

* [PATCH 6/8] net: nixge: Spelling s/Instrument/Instruments/
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (4 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 5/8] net: ixp4xx: Spelling s/XSacle/XScale/ Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 7/8] net: packetengines: Fix manufacturer spelling and capitalization Geert Uytterhoeven
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/ni/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/ni/Kconfig b/drivers/net/ethernet/ni/Kconfig
index 70b1a03c0953e696..01229190132d484f 100644
--- a/drivers/net/ethernet/ni/Kconfig
+++ b/drivers/net/ethernet/ni/Kconfig
@@ -11,7 +11,7 @@ config NET_VENDOR_NI
 
 	  Note that the answer to this question doesn't directly affect the
 	  kernel: saying N will just cause the configurator to skip all
-	  the questions about National Instrument devices.
+	  the questions about National Instruments devices.
 	  If you say Y, you will be asked for your specific device in the
 	  following questions.
 
-- 
2.17.1


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

* [PATCH 7/8] net: packetengines: Fix manufacturer spelling and capitalization
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (5 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 6/8] net: nixge: Spelling s/Instrument/Instruments/ Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-07-31 13:22 ` [PATCH 8/8] net: samsung: Spelling s/case/cause/ Geert Uytterhoeven
  2019-08-01 17:46 ` [PATCH 0/8] net: Manufacturer names and spelling fixes David Miller
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

Use "Packet Engines" consistently.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/packetengines/Kconfig  | 6 +++---
 drivers/net/ethernet/packetengines/Makefile | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/packetengines/Kconfig b/drivers/net/ethernet/packetengines/Kconfig
index 8161e308e64b0f16..ead3750b4489d1bf 100644
--- a/drivers/net/ethernet/packetengines/Kconfig
+++ b/drivers/net/ethernet/packetengines/Kconfig
@@ -1,10 +1,10 @@
 # SPDX-License-Identifier: GPL-2.0-only
 #
-# Packet engine device configuration
+# Packet Engines device configuration
 #
 
 config NET_VENDOR_PACKET_ENGINES
-	bool "Packet Engine devices"
+	bool "Packet Engines devices"
 	default y
 	depends on PCI
 	---help---
@@ -12,7 +12,7 @@ config NET_VENDOR_PACKET_ENGINES
 
 	  Note that the answer to this question doesn't directly affect the
 	  kernel: saying N will just cause the configurator to skip all
-	  the questions about packet engine devices. If you say Y, you will
+	  the questions about Packet Engines devices. If you say Y, you will
 	  be asked for your specific card in the following questions.
 
 if NET_VENDOR_PACKET_ENGINES
diff --git a/drivers/net/ethernet/packetengines/Makefile b/drivers/net/ethernet/packetengines/Makefile
index 1553c9cfc254d6f8..cf054b796d111231 100644
--- a/drivers/net/ethernet/packetengines/Makefile
+++ b/drivers/net/ethernet/packetengines/Makefile
@@ -1,6 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0-only
 #
-# Makefile for the Packet Engine network device drivers.
+# Makefile for the Packet Engines network device drivers.
 #
 
 obj-$(CONFIG_HAMACHI) += hamachi.o
-- 
2.17.1


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

* [PATCH 8/8] net: samsung: Spelling s/case/cause/
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (6 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 7/8] net: packetengines: Fix manufacturer spelling and capitalization Geert Uytterhoeven
@ 2019-07-31 13:22 ` Geert Uytterhoeven
  2019-08-01 17:46 ` [PATCH 0/8] net: Manufacturer names and spelling fixes David Miller
  8 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2019-07-31 13:22 UTC (permalink / raw)
  To: David S . Miller; +Cc: netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/samsung/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/samsung/Kconfig b/drivers/net/ethernet/samsung/Kconfig
index 027938017579130f..e92a178a76df0849 100644
--- a/drivers/net/ethernet/samsung/Kconfig
+++ b/drivers/net/ethernet/samsung/Kconfig
@@ -11,7 +11,7 @@ config NET_VENDOR_SAMSUNG
 	  say Y.
 
 	  Note that the answer to this question does not directly affect
-	  the kernel: saying N will just case the configurator to skip all
+	  the kernel: saying N will just cause the configurator to skip all
 	  the questions about Samsung chipsets. If you say Y, you will be asked
 	  for your specific chipset/driver in the following questions.
 
-- 
2.17.1


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

* Re: [PATCH 0/8] net: Manufacturer names and spelling fixes
  2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
                   ` (7 preceding siblings ...)
  2019-07-31 13:22 ` [PATCH 8/8] net: samsung: Spelling s/case/cause/ Geert Uytterhoeven
@ 2019-08-01 17:46 ` David Miller
  8 siblings, 0 replies; 10+ messages in thread
From: David Miller @ 2019-08-01 17:46 UTC (permalink / raw)
  To: geert+renesas; +Cc: netdev, linux-kernel

From: Geert Uytterhoeven <geert+renesas@glider.be>
Date: Wed, 31 Jul 2019 15:22:08 +0200

> This is a set of fixes for (some blatantly) wrong manufacturer names
> and various spelling issues, mostly in Kconfig help texts.

Series applied, thank you Geert.

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

end of thread, other threads:[~2019-08-01 17:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-31 13:22 [PATCH 0/8] net: Manufacturer names and spelling fixes Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 1/8] net: 8390: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 2/8] net: amd: Spelling s/case/cause/ Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 3/8] net: apple: Fix manufacturer name in Kconfig help text Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 4/8] net: broadcom: " Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 5/8] net: ixp4xx: Spelling s/XSacle/XScale/ Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 6/8] net: nixge: Spelling s/Instrument/Instruments/ Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 7/8] net: packetengines: Fix manufacturer spelling and capitalization Geert Uytterhoeven
2019-07-31 13:22 ` [PATCH 8/8] net: samsung: Spelling s/case/cause/ Geert Uytterhoeven
2019-08-01 17:46 ` [PATCH 0/8] net: Manufacturer names and spelling fixes David Miller

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).