public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform"
@ 2023-01-05  9:58 Colin Ian King
  2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Colin Ian King @ 2023-01-05  9:58 UTC (permalink / raw)
  To: Miquel Raynal, Srinivas Kandagatla, Rob Herring,
	Krzysztof Kozlowski, devicetree
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in the literal string. Fix it.

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

diff --git a/drivers/nvmem/layouts/onie-tlv.c b/drivers/nvmem/layouts/onie-tlv.c
index 074c7c700845..767f39fff717 100644
--- a/drivers/nvmem/layouts/onie-tlv.c
+++ b/drivers/nvmem/layouts/onie-tlv.c
@@ -48,7 +48,7 @@ static const char *onie_tlv_cell_name(u8 type)
 	case 0x27:
 		return "label-revision";
 	case 0x28:
-		return "platforn-name";
+		return "platform-name";
 	case 0x29:
 		return "onie-version";
 	case 0x2A:
-- 
2.30.2


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

* [PATCH 2/2][next] dt-bindings: nvmem: Fix spelling mistake "platforn" -> "platform"
  2023-01-05  9:58 [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform" Colin Ian King
@ 2023-01-05  9:58 ` Colin Ian King
  2023-01-05 10:03   ` Miquel Raynal
  2023-01-05 17:14   ` Srinivas Kandagatla
  2023-01-05 10:03 ` [PATCH 1/2][next] nvmem: layouts: " Miquel Raynal
  2023-01-05 17:14 ` Srinivas Kandagatla
  2 siblings, 2 replies; 6+ messages in thread
From: Colin Ian King @ 2023-01-05  9:58 UTC (permalink / raw)
  To: Miquel Raynal, Srinivas Kandagatla, Rob Herring,
	Krzysztof Kozlowski, devicetree
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in platforn-name. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 .../devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
index 5a0e7671aa3f..714a6538cc7c 100644
--- a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
+++ b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
@@ -61,7 +61,7 @@ properties:
     type: object
     additionalProperties: false
 
-  platforn-name:
+  platform-name:
     type: object
     additionalProperties: false
 
-- 
2.30.2


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

* Re: [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform"
  2023-01-05  9:58 [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform" Colin Ian King
  2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
@ 2023-01-05 10:03 ` Miquel Raynal
  2023-01-05 17:14 ` Srinivas Kandagatla
  2 siblings, 0 replies; 6+ messages in thread
From: Miquel Raynal @ 2023-01-05 10:03 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Srinivas Kandagatla, Rob Herring, Krzysztof Kozlowski, devicetree,
	kernel-janitors, linux-kernel

Hi Colin,

colin.i.king@gmail.com wrote on Thu,  5 Jan 2023 09:58:27 +0000:

> There is a spelling mistake in the literal string. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Good catch.

Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>

> ---
>  drivers/nvmem/layouts/onie-tlv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/nvmem/layouts/onie-tlv.c b/drivers/nvmem/layouts/onie-tlv.c
> index 074c7c700845..767f39fff717 100644
> --- a/drivers/nvmem/layouts/onie-tlv.c
> +++ b/drivers/nvmem/layouts/onie-tlv.c
> @@ -48,7 +48,7 @@ static const char *onie_tlv_cell_name(u8 type)
>  	case 0x27:
>  		return "label-revision";
>  	case 0x28:
> -		return "platforn-name";
> +		return "platform-name";
>  	case 0x29:
>  		return "onie-version";
>  	case 0x2A:


Thanks,
Miquèl

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

* Re: [PATCH 2/2][next] dt-bindings: nvmem: Fix spelling mistake "platforn" -> "platform"
  2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
@ 2023-01-05 10:03   ` Miquel Raynal
  2023-01-05 17:14   ` Srinivas Kandagatla
  1 sibling, 0 replies; 6+ messages in thread
From: Miquel Raynal @ 2023-01-05 10:03 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Srinivas Kandagatla, Rob Herring, Krzysztof Kozlowski, devicetree,
	kernel-janitors, linux-kernel

Hi Colin,

colin.i.king@gmail.com wrote on Thu,  5 Jan 2023 09:58:28 +0000:

> There is a spelling mistake in platforn-name. Fix it.

Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>

> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  .../devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> index 5a0e7671aa3f..714a6538cc7c 100644
> --- a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> +++ b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> @@ -61,7 +61,7 @@ properties:
>      type: object
>      additionalProperties: false
>  
> -  platforn-name:
> +  platform-name:
>      type: object
>      additionalProperties: false
>  


Thanks,
Miquèl

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

* Re: [PATCH 2/2][next] dt-bindings: nvmem: Fix spelling mistake "platforn" -> "platform"
  2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
  2023-01-05 10:03   ` Miquel Raynal
@ 2023-01-05 17:14   ` Srinivas Kandagatla
  1 sibling, 0 replies; 6+ messages in thread
From: Srinivas Kandagatla @ 2023-01-05 17:14 UTC (permalink / raw)
  To: Colin Ian King, Miquel Raynal, Rob Herring, Krzysztof Kozlowski,
	devicetree
  Cc: kernel-janitors, linux-kernel



On 05/01/2023 09:58, Colin Ian King wrote:
> There is a spelling mistake in platforn-name. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---


Applied thanks,

--srini


>   .../devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml      | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> index 5a0e7671aa3f..714a6538cc7c 100644
> --- a/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> +++ b/Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
> @@ -61,7 +61,7 @@ properties:
>       type: object
>       additionalProperties: false
>   
> -  platforn-name:
> +  platform-name:
>       type: object
>       additionalProperties: false
>   

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

* Re: [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform"
  2023-01-05  9:58 [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform" Colin Ian King
  2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
  2023-01-05 10:03 ` [PATCH 1/2][next] nvmem: layouts: " Miquel Raynal
@ 2023-01-05 17:14 ` Srinivas Kandagatla
  2 siblings, 0 replies; 6+ messages in thread
From: Srinivas Kandagatla @ 2023-01-05 17:14 UTC (permalink / raw)
  To: Colin Ian King, Miquel Raynal, Rob Herring, Krzysztof Kozlowski,
	devicetree
  Cc: kernel-janitors, linux-kernel



On 05/01/2023 09:58, Colin Ian King wrote:
> There is a spelling mistake in the literal string. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---

Applied thanks,

--srini
>   drivers/nvmem/layouts/onie-tlv.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/nvmem/layouts/onie-tlv.c b/drivers/nvmem/layouts/onie-tlv.c
> index 074c7c700845..767f39fff717 100644
> --- a/drivers/nvmem/layouts/onie-tlv.c
> +++ b/drivers/nvmem/layouts/onie-tlv.c
> @@ -48,7 +48,7 @@ static const char *onie_tlv_cell_name(u8 type)
>   	case 0x27:
>   		return "label-revision";
>   	case 0x28:
> -		return "platforn-name";
> +		return "platform-name";
>   	case 0x29:
>   		return "onie-version";
>   	case 0x2A:

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

end of thread, other threads:[~2023-01-05 17:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-05  9:58 [PATCH 1/2][next] nvmem: layouts: Fix spelling mistake "platforn" -> "platform" Colin Ian King
2023-01-05  9:58 ` [PATCH 2/2][next] dt-bindings: nvmem: " Colin Ian King
2023-01-05 10:03   ` Miquel Raynal
2023-01-05 17:14   ` Srinivas Kandagatla
2023-01-05 10:03 ` [PATCH 1/2][next] nvmem: layouts: " Miquel Raynal
2023-01-05 17:14 ` Srinivas Kandagatla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox