All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
@ 2023-02-07  9:14 Colin Ian King
  2023-02-07 17:49 ` Guenter Roeck
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Colin Ian King @ 2023-02-07  9:14 UTC (permalink / raw)
  To: Prashant Malani, Benson Leung, Guenter Roeck, chrome-platform
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a dev_warn message, make it lower case
and fix the spelling.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/platform/chrome/cros_ec_typec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
index 71f5d7d8e055..a673c3342470 100644
--- a/drivers/platform/chrome/cros_ec_typec.c
+++ b/drivers/platform/chrome/cros_ec_typec.c
@@ -1020,7 +1020,7 @@ static void cros_typec_handle_status(struct cros_typec_data *typec, int port_num
 		cros_typec_handle_vdm_attention(typec, port_num);
 		ret = cros_typec_send_clear_event(typec, port_num, PD_STATUS_EVENT_VDM_ATTENTION);
 		if (ret < 0)
-			dev_warn(typec->dev, "Failed VDM Attenetion event clear, port: %d\n",
+			dev_warn(typec->dev, "Failed VDM attention event clear, port: %d\n",
 				 port_num);
 	}
 }
-- 
2.30.2


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

* Re: [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
  2023-02-07  9:14 [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention" Colin Ian King
@ 2023-02-07 17:49 ` Guenter Roeck
  2023-02-08  7:33 ` Tzung-Bi Shih
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Guenter Roeck @ 2023-02-07 17:49 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Prashant Malani, Benson Leung, Guenter Roeck, chrome-platform,
	kernel-janitors, linux-kernel

On Tue, Feb 7, 2023 at 1:14 AM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in a dev_warn message, make it lower case
> and fix the spelling.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/platform/chrome/cros_ec_typec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
> index 71f5d7d8e055..a673c3342470 100644
> --- a/drivers/platform/chrome/cros_ec_typec.c
> +++ b/drivers/platform/chrome/cros_ec_typec.c
> @@ -1020,7 +1020,7 @@ static void cros_typec_handle_status(struct cros_typec_data *typec, int port_num
>                 cros_typec_handle_vdm_attention(typec, port_num);
>                 ret = cros_typec_send_clear_event(typec, port_num, PD_STATUS_EVENT_VDM_ATTENTION);
>                 if (ret < 0)
> -                       dev_warn(typec->dev, "Failed VDM Attenetion event clear, port: %d\n",
> +                       dev_warn(typec->dev, "Failed VDM attention event clear, port: %d\n",
>                                  port_num);
>         }
>  }
> --
> 2.30.2
>

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

* Re: [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
  2023-02-07  9:14 [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention" Colin Ian King
  2023-02-07 17:49 ` Guenter Roeck
@ 2023-02-08  7:33 ` Tzung-Bi Shih
  2023-02-08  7:52   ` Prashant Malani
  2023-02-08 18:30 ` patchwork-bot+chrome-platform
  2023-02-08 21:40 ` patchwork-bot+chrome-platform
  3 siblings, 1 reply; 6+ messages in thread
From: Tzung-Bi Shih @ 2023-02-08  7:33 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Prashant Malani, Benson Leung, Guenter Roeck, chrome-platform,
	kernel-janitors, linux-kernel

Hi Prashant,

On Tue, Feb 07, 2023 at 09:14:43AM +0000, Colin Ian King wrote:
> There is a spelling mistake in a dev_warn message, make it lower case
> and fix the spelling.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

It's about time to cut for the coming merge window.  I guess you would
like this simple patch to be included as a fixup for f54c013e7eef
("platform/chrome: cros_typec_vdm: Add Attention support").  Please apply
the patch if it makes sense.

One minor suggestion for the commit title:
"platform/chrome: cros_ec_typec: Fix spelling mistake" looks more clear
to me.

With that:
Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>

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

* Re: [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
  2023-02-08  7:33 ` Tzung-Bi Shih
@ 2023-02-08  7:52   ` Prashant Malani
  0 siblings, 0 replies; 6+ messages in thread
From: Prashant Malani @ 2023-02-08  7:52 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: Colin Ian King, Benson Leung, Guenter Roeck, chrome-platform,
	kernel-janitors, linux-kernel

On Tue, Feb 7, 2023 at 11:33 PM Tzung-Bi Shih <tzungbi@kernel.org> wrote:
>
> Hi Prashant,
>
> On Tue, Feb 07, 2023 at 09:14:43AM +0000, Colin Ian King wrote:
> > There is a spelling mistake in a dev_warn message, make it lower case
> > and fix the spelling.
> >
> > Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
>
> It's about time to cut for the coming merge window.

I thought there would be an rc8...

> I guess you would
> like this simple patch to be included as a fixup for f54c013e7eef
> ("platform/chrome: cros_typec_vdm: Add Attention support").  Please apply
> the patch if it makes sense.

Sure. I'll make the modification you suggest and apply this tomorrow.
Thanks for signal boosting it.

>
> One minor suggestion for the commit title:
> "platform/chrome: cros_ec_typec: Fix spelling mistake" looks more clear
> to me.
>
> With that:
> Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>

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

* Re: [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
  2023-02-07  9:14 [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention" Colin Ian King
  2023-02-07 17:49 ` Guenter Roeck
  2023-02-08  7:33 ` Tzung-Bi Shih
@ 2023-02-08 18:30 ` patchwork-bot+chrome-platform
  2023-02-08 21:40 ` patchwork-bot+chrome-platform
  3 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+chrome-platform @ 2023-02-08 18:30 UTC (permalink / raw)
  To: Colin Ian King
  Cc: pmalani, bleung, groeck, chrome-platform, kernel-janitors, linux-kernel

Hello:

This patch was applied to chrome-platform/linux.git (for-kernelci)
by Prashant Malani <pmalani@chromium.org>:

On Tue,  7 Feb 2023 09:14:43 +0000 you wrote:
> There is a spelling mistake in a dev_warn message, make it lower case
> and fix the spelling.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/platform/chrome/cros_ec_typec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
    https://git.kernel.org/chrome-platform/c/b0d8a67715da

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
  2023-02-07  9:14 [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention" Colin Ian King
                   ` (2 preceding siblings ...)
  2023-02-08 18:30 ` patchwork-bot+chrome-platform
@ 2023-02-08 21:40 ` patchwork-bot+chrome-platform
  3 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+chrome-platform @ 2023-02-08 21:40 UTC (permalink / raw)
  To: Colin Ian King
  Cc: pmalani, bleung, groeck, chrome-platform, kernel-janitors, linux-kernel

Hello:

This patch was applied to chrome-platform/linux.git (for-next)
by Prashant Malani <pmalani@chromium.org>:

On Tue,  7 Feb 2023 09:14:43 +0000 you wrote:
> There is a spelling mistake in a dev_warn message, make it lower case
> and fix the spelling.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/platform/chrome/cros_ec_typec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention"
    https://git.kernel.org/chrome-platform/c/b0d8a67715da

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2023-02-08 21:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-07  9:14 [PATCH][next] platform/chrome: Fix spelling mistake "Attenetion" -> "attention" Colin Ian King
2023-02-07 17:49 ` Guenter Roeck
2023-02-08  7:33 ` Tzung-Bi Shih
2023-02-08  7:52   ` Prashant Malani
2023-02-08 18:30 ` patchwork-bot+chrome-platform
2023-02-08 21:40 ` patchwork-bot+chrome-platform

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.