All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name
@ 2023-03-18 13:42 Lars-Peter Clausen
  2023-03-18 13:42 ` [PATCH 2/2] dt-bindings: i2c: cadence: " Lars-Peter Clausen
  2023-03-19 12:03 ` [PATCH 1/2] dt-bindings: i2c: xiic: " Krzysztof Kozlowski
  0 siblings, 2 replies; 6+ messages in thread
From: Lars-Peter Clausen @ 2023-03-18 13:42 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski
  Cc: Michal Simek, devicetree, Lars-Peter Clausen

The Xilinx I2C controller device tree bindings documentation documents a
`clock-name` property. There is no such property, the correct property name
is `clock-names` with a `s`. The `s` was accidentally dropped during
conversion from txt to yaml.

Fixes: f86ca4147976 ("dt-bindings: i2c: xiic: Migrate i2c-xiic documentation to YAML")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml b/Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
index 1b598638d457..cc40a61a1c8e 100644
--- a/Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
+++ b/Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
@@ -27,7 +27,7 @@ properties:
   clocks:
     minItems: 1
 
-  clock-name:
+  clock-names:
     const: pclk
     description: |
       Input clock name.
-- 
2.30.2


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

* [PATCH 2/2] dt-bindings: i2c: cadence: Fix `clock-names` property name
  2023-03-18 13:42 [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name Lars-Peter Clausen
@ 2023-03-18 13:42 ` Lars-Peter Clausen
  2023-03-19 12:03   ` Krzysztof Kozlowski
  2023-03-19 12:03 ` [PATCH 1/2] dt-bindings: i2c: xiic: " Krzysztof Kozlowski
  1 sibling, 1 reply; 6+ messages in thread
From: Lars-Peter Clausen @ 2023-03-18 13:42 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski
  Cc: Michal Simek, devicetree, Lars-Peter Clausen

The Cadence I2C controller device tree bindings documentation documents a
`clock-name` property. There is no such property, the correct property name
is `clock-names` with a `s`. The `s` was accidentally dropped during
conversion from txt to yaml.

Fixes: aea37006e183 ("dt-bindings: i2c: cadence: Migrate i2c-cadence documentation to YAML")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml b/Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
index 2e95cda7262a..4f06ef07cdad 100644
--- a/Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
+++ b/Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
@@ -33,7 +33,7 @@ properties:
     description: |
       Desired operating frequency, in Hz, of the bus.
 
-  clock-name:
+  clock-names:
     const: pclk
     description: |
       Input clock name.
-- 
2.30.2


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

* Re: [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name
  2023-03-18 13:42 [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name Lars-Peter Clausen
  2023-03-18 13:42 ` [PATCH 2/2] dt-bindings: i2c: cadence: " Lars-Peter Clausen
@ 2023-03-19 12:03 ` Krzysztof Kozlowski
  2023-03-20  7:36   ` Michal Simek
  1 sibling, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-19 12:03 UTC (permalink / raw)
  To: Lars-Peter Clausen, Rob Herring, Krzysztof Kozlowski
  Cc: Michal Simek, devicetree

On 18/03/2023 14:42, Lars-Peter Clausen wrote:
> The Xilinx I2C controller device tree bindings documentation documents a
> `clock-name` property. There is no such property, the correct property name
> is `clock-names` with a `s`. The `s` was accidentally dropped during
> conversion from txt to yaml.
> 
> Fixes: f86ca4147976 ("dt-bindings: i2c: xiic: Migrate i2c-xiic documentation to YAML")
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] dt-bindings: i2c: cadence: Fix `clock-names` property name
  2023-03-18 13:42 ` [PATCH 2/2] dt-bindings: i2c: cadence: " Lars-Peter Clausen
@ 2023-03-19 12:03   ` Krzysztof Kozlowski
  2023-03-20  7:36     ` Michal Simek
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-19 12:03 UTC (permalink / raw)
  To: Lars-Peter Clausen, Rob Herring, Krzysztof Kozlowski
  Cc: Michal Simek, devicetree

On 18/03/2023 14:42, Lars-Peter Clausen wrote:
> The Cadence I2C controller device tree bindings documentation documents a
> `clock-name` property. There is no such property, the correct property name
> is `clock-names` with a `s`. The `s` was accidentally dropped during
> conversion from txt to yaml.
> 
> Fixes: aea37006e183 ("dt-bindings: i2c: cadence: Migrate i2c-cadence documentation to YAML")
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
> ---


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] dt-bindings: i2c: cadence: Fix `clock-names` property name
  2023-03-19 12:03   ` Krzysztof Kozlowski
@ 2023-03-20  7:36     ` Michal Simek
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Simek @ 2023-03-20  7:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Lars-Peter Clausen, Rob Herring,
	Krzysztof Kozlowski
  Cc: devicetree



On 3/19/23 13:03, Krzysztof Kozlowski wrote:
> On 18/03/2023 14:42, Lars-Peter Clausen wrote:
>> The Cadence I2C controller device tree bindings documentation documents a
>> `clock-name` property. There is no such property, the correct property name
>> is `clock-names` with a `s`. The `s` was accidentally dropped during
>> conversion from txt to yaml.
>>
>> Fixes: aea37006e183 ("dt-bindings: i2c: cadence: Migrate i2c-cadence documentation to YAML")
>> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
>> ---
> 
> 
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 

Reviewed-by: Michal Simek <michal.simek@amd.com>

Thanks,
Michal

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

* Re: [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name
  2023-03-19 12:03 ` [PATCH 1/2] dt-bindings: i2c: xiic: " Krzysztof Kozlowski
@ 2023-03-20  7:36   ` Michal Simek
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Simek @ 2023-03-20  7:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Lars-Peter Clausen, Rob Herring,
	Krzysztof Kozlowski
  Cc: devicetree



On 3/19/23 13:03, Krzysztof Kozlowski wrote:
> On 18/03/2023 14:42, Lars-Peter Clausen wrote:
>> The Xilinx I2C controller device tree bindings documentation documents a
>> `clock-name` property. There is no such property, the correct property name
>> is `clock-names` with a `s`. The `s` was accidentally dropped during
>> conversion from txt to yaml.
>>
>> Fixes: f86ca4147976 ("dt-bindings: i2c: xiic: Migrate i2c-xiic documentation to YAML")
>> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
> 
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Michal Simek <michal.simek@amd.com>

Thanks,
Michal


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

end of thread, other threads:[~2023-03-20  7:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-18 13:42 [PATCH 1/2] dt-bindings: i2c: xiic: Fix `clock-names` property name Lars-Peter Clausen
2023-03-18 13:42 ` [PATCH 2/2] dt-bindings: i2c: cadence: " Lars-Peter Clausen
2023-03-19 12:03   ` Krzysztof Kozlowski
2023-03-20  7:36     ` Michal Simek
2023-03-19 12:03 ` [PATCH 1/2] dt-bindings: i2c: xiic: " Krzysztof Kozlowski
2023-03-20  7:36   ` Michal Simek

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.