All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least"
@ 2021-08-26 12:39 Colin King
  2021-08-26 13:58 ` Guenter Roeck
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin King @ 2021-08-26 12:39 UTC (permalink / raw)
  To: Guenter Roeck, Heikki Krogerus, Greg Kroah-Hartman, linux-usb
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There are spelling mistakes in a comment and a literal string.
Fix them.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/usb/typec/tcpm/tcpm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
index 049f4c61ee82..b981fc39fa3c 100644
--- a/drivers/usb/typec/tcpm/tcpm.c
+++ b/drivers/usb/typec/tcpm/tcpm.c
@@ -278,7 +278,7 @@ struct pd_mode_data {
  * @req_max_curr: Requested max current of the port partner
  * @req_out_volt: Requested output voltage to the port partner
  * @req_op_curr: Requested operating current to the port partner
- * @supported: Parter has atleast one APDO hence supports PPS
+ * @supported: Parter has at least one APDO hence supports PPS
  * @active: PPS mode is active
  */
 struct pd_pps_data {
@@ -2050,7 +2050,7 @@ enum pdo_err {
 
 static const char * const pdo_err_msg[] = {
 	[PDO_ERR_NO_VSAFE5V] =
-	" err: source/sink caps should atleast have vSafe5V",
+	" err: source/sink caps should at least have vSafe5V",
 	[PDO_ERR_VSAFE5V_NOT_FIRST] =
 	" err: vSafe5V Fixed Supply Object Shall always be the first object",
 	[PDO_ERR_PDO_TYPE_NOT_IN_ORDER] =
-- 
2.32.0


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

* Re: [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least"
  2021-08-26 12:39 [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least" Colin King
@ 2021-08-26 13:58 ` Guenter Roeck
  2021-08-26 14:06 ` Heikki Krogerus
  2021-08-26 15:12 ` Adam Thomson
  2 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2021-08-26 13:58 UTC (permalink / raw)
  To: Colin King, Heikki Krogerus, Greg Kroah-Hartman, linux-usb
  Cc: kernel-janitors, linux-kernel

On 8/26/21 5:39 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in a comment and a literal string.
> Fix them.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>   drivers/usb/typec/tcpm/tcpm.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> index 049f4c61ee82..b981fc39fa3c 100644
> --- a/drivers/usb/typec/tcpm/tcpm.c
> +++ b/drivers/usb/typec/tcpm/tcpm.c
> @@ -278,7 +278,7 @@ struct pd_mode_data {
>    * @req_max_curr: Requested max current of the port partner
>    * @req_out_volt: Requested output voltage to the port partner
>    * @req_op_curr: Requested operating current to the port partner
> - * @supported: Parter has atleast one APDO hence supports PPS
> + * @supported: Parter has at least one APDO hence supports PPS
>    * @active: PPS mode is active
>    */
>   struct pd_pps_data {
> @@ -2050,7 +2050,7 @@ enum pdo_err {
>   
>   static const char * const pdo_err_msg[] = {
>   	[PDO_ERR_NO_VSAFE5V] =
> -	" err: source/sink caps should atleast have vSafe5V",
> +	" err: source/sink caps should at least have vSafe5V",
>   	[PDO_ERR_VSAFE5V_NOT_FIRST] =
>   	" err: vSafe5V Fixed Supply Object Shall always be the first object",
>   	[PDO_ERR_PDO_TYPE_NOT_IN_ORDER] =
> 


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

* Re: [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least"
  2021-08-26 12:39 [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least" Colin King
  2021-08-26 13:58 ` Guenter Roeck
@ 2021-08-26 14:06 ` Heikki Krogerus
  2021-08-26 15:12 ` Adam Thomson
  2 siblings, 0 replies; 4+ messages in thread
From: Heikki Krogerus @ 2021-08-26 14:06 UTC (permalink / raw)
  To: Colin King
  Cc: Guenter Roeck, Greg Kroah-Hartman, linux-usb, kernel-janitors,
	linux-kernel

On Thu, Aug 26, 2021 at 01:39:59PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in a comment and a literal string.
> Fix them.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> ---
>  drivers/usb/typec/tcpm/tcpm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> index 049f4c61ee82..b981fc39fa3c 100644
> --- a/drivers/usb/typec/tcpm/tcpm.c
> +++ b/drivers/usb/typec/tcpm/tcpm.c
> @@ -278,7 +278,7 @@ struct pd_mode_data {
>   * @req_max_curr: Requested max current of the port partner
>   * @req_out_volt: Requested output voltage to the port partner
>   * @req_op_curr: Requested operating current to the port partner
> - * @supported: Parter has atleast one APDO hence supports PPS
> + * @supported: Parter has at least one APDO hence supports PPS
>   * @active: PPS mode is active
>   */
>  struct pd_pps_data {
> @@ -2050,7 +2050,7 @@ enum pdo_err {
>  
>  static const char * const pdo_err_msg[] = {
>  	[PDO_ERR_NO_VSAFE5V] =
> -	" err: source/sink caps should atleast have vSafe5V",
> +	" err: source/sink caps should at least have vSafe5V",
>  	[PDO_ERR_VSAFE5V_NOT_FIRST] =
>  	" err: vSafe5V Fixed Supply Object Shall always be the first object",
>  	[PDO_ERR_PDO_TYPE_NOT_IN_ORDER] =
> -- 
> 2.32.0

-- 
heikki

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

* RE: [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least"
  2021-08-26 12:39 [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least" Colin King
  2021-08-26 13:58 ` Guenter Roeck
  2021-08-26 14:06 ` Heikki Krogerus
@ 2021-08-26 15:12 ` Adam Thomson
  2 siblings, 0 replies; 4+ messages in thread
From: Adam Thomson @ 2021-08-26 15:12 UTC (permalink / raw)
  To: Colin King, Guenter Roeck, Heikki Krogerus, Greg Kroah-Hartman,
	linux-usb
  Cc: kernel-janitors, linux-kernel

On 26 August 2021 13:40, Colin King wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in a comment and a literal string.
> Fix them.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/usb/typec/tcpm/tcpm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> index 049f4c61ee82..b981fc39fa3c 100644
> --- a/drivers/usb/typec/tcpm/tcpm.c
> +++ b/drivers/usb/typec/tcpm/tcpm.c
> @@ -278,7 +278,7 @@ struct pd_mode_data {
>   * @req_max_curr: Requested max current of the port partner
>   * @req_out_volt: Requested output voltage to the port partner
>   * @req_op_curr: Requested operating current to the port partner
> - * @supported: Parter has atleast one APDO hence supports PPS
> + * @supported: Parter has at least one APDO hence supports PPS

Actually 'Parter' should be 'Partner' here as well.

>   * @active: PPS mode is active
>   */
>  struct pd_pps_data {
> @@ -2050,7 +2050,7 @@ enum pdo_err {
> 
>  static const char * const pdo_err_msg[] = {
>  	[PDO_ERR_NO_VSAFE5V] =
> -	" err: source/sink caps should atleast have vSafe5V",
> +	" err: source/sink caps should at least have vSafe5V",
>  	[PDO_ERR_VSAFE5V_NOT_FIRST] =
>  	" err: vSafe5V Fixed Supply Object Shall always be the first object",
>  	[PDO_ERR_PDO_TYPE_NOT_IN_ORDER] =
> --
> 2.32.0


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

end of thread, other threads:[~2021-08-26 15:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-26 12:39 [PATCH] usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least" Colin King
2021-08-26 13:58 ` Guenter Roeck
2021-08-26 14:06 ` Heikki Krogerus
2021-08-26 15:12 ` Adam Thomson

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.