[PATCH v2] drivers: net: wwan: wwan_core.c: resolved spelling mistake

Muhammad Muzammil posted 1 patch 2 years, 2 months ago
drivers/net/wwan/wwan_core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH v2] drivers: net: wwan: wwan_core.c: resolved spelling mistake
Posted by Muhammad Muzammil 2 years, 2 months ago
resolved typing mistake from devce to device

Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>

changes since v1:
	- resolved another typing mistake from concurent to
	  concurrent
---
 drivers/net/wwan/wwan_core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wwan/wwan_core.c b/drivers/net/wwan/wwan_core.c
index 87df60916960..72e01e550a16 100644
--- a/drivers/net/wwan/wwan_core.c
+++ b/drivers/net/wwan/wwan_core.c
@@ -302,7 +302,7 @@ static void wwan_remove_dev(struct wwan_device *wwandev)
 
 static const struct {
 	const char * const name;	/* Port type name */
-	const char * const devsuf;	/* Port devce name suffix */
+	const char * const devsuf;	/* Port device name suffix */
 } wwan_port_types[WWAN_PORT_MAX + 1] = {
 	[WWAN_PORT_AT] = {
 		.name = "AT",
@@ -1184,7 +1184,7 @@ void wwan_unregister_ops(struct device *parent)
 	 */
 	put_device(&wwandev->dev);
 
-	rtnl_lock();	/* Prevent concurent netdev(s) creation/destroying */
+	rtnl_lock();	/* Prevent concurrent netdev(s) creation/destroying */
 
 	/* Remove all child netdev(s), using batch removing */
 	device_for_each_child(&wwandev->dev, &kill_list,
-- 
2.27.0
Re: [PATCH v2] drivers: net: wwan: wwan_core.c: resolved spelling mistake
Posted by patchwork-bot+netdevbpf@kernel.org 2 years, 2 months ago
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Fri, 13 Oct 2023 09:23:04 +0500 you wrote:
> resolved typing mistake from devce to device
> 
> Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>
> 
> changes since v1:
> 	- resolved another typing mistake from concurent to
> 	  concurrent
> 
> [...]

Here is the summary with links:
  - [v2] drivers: net: wwan: wwan_core.c: resolved spelling mistake
    https://git.kernel.org/netdev/net-next/c/97ddc25a368c

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
Re: [PATCH v2] drivers: net: wwan: wwan_core.c: resolved spelling mistake
Posted by Simon Horman 2 years, 2 months ago
On Fri, Oct 13, 2023 at 09:23:04AM +0500, Muhammad Muzammil wrote:
> resolved typing mistake from devce to device
> 
> Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>
> 

As mentioned elsewhere, the "changes" text below is usually
placed below the scissors ("---").

I'm unsure if a v3 is warranted to address this.

> changes since v1:
> 	- resolved another typing mistake from concurent to
> 	  concurrent
> ---
>  drivers/net/wwan/wwan_core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I confirm this corrects the two spelling errors flagged by codespell
in this file.

Reviewed-by: Simon Horman <horms@kernel.org>