linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths
@ 2024-12-31 15:01 Dario Binacchi
  2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Dario Binacchi @ 2024-12-31 15:01 UTC (permalink / raw)
  To: linux-kernel
  Cc: Dario Binacchi, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, Stephen Boyd, devicetree, linux-arm-kernel,
	linux-clk, linux-stm32

The path of the two files was wrong even at the time they were added.
Let's fix them so they can be correctly referenced.

Fixes: 722dc8a1d5c8 ("dt-bindings: rcc: stm32: add new compatible for STM32MP13 SoC")
Fixes: 20107d7328cc ("dt-bindings: rcc: Convert stm32mp1 rcc bindings to json-schema")
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---

 Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
index 9b3aaae546cb..ca75b1972470 100644
--- a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
+++ b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
@@ -40,8 +40,8 @@ description: |
           = 0x180 / 4 * 32 + 0 = 3072
 
   The list of valid indices for STM32MP1 is available in:
-  include/dt-bindings/reset-controller/stm32mp1-resets.h
-  include/dt-bindings/reset-controller/stm32mp13-resets.h
+  include/dt-bindings/reset/stm32mp1-resets.h
+  include/dt-bindings/reset/stm32mp13-resets.h
 
   This file implements defines like:
   #define LTDC_R	3072
-- 
2.43.0


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

* [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path
  2024-12-31 15:01 [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Dario Binacchi
@ 2024-12-31 15:01 ` Dario Binacchi
  2025-01-02  8:26   ` Krzysztof Kozlowski
  2025-01-06 23:48   ` Stephen Boyd
  2025-01-02  8:25 ` [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Krzysztof Kozlowski
  2025-01-06 23:48 ` Stephen Boyd
  2 siblings, 2 replies; 6+ messages in thread
From: Dario Binacchi @ 2024-12-31 15:01 UTC (permalink / raw)
  To: linux-kernel
  Cc: Dario Binacchi, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, Stephen Boyd, devicetree, linux-arm-kernel,
	linux-clk, linux-stm32

All other paths referenced in the file follow a scheme starting from the
Linux root. The patch adjusts the single file that deviated from this
scheme, making it consistent with the others.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---

 Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
index ca75b1972470..e72f46e79b90 100644
--- a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
+++ b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
@@ -21,7 +21,7 @@ description: |
   =================
 
   All available clocks are defined as preprocessor macros in
-  dt-bindings/clock/stm32mp1-clks.h header and can be used in device
+  include/dt-bindings/clock/stm32mp1-clks.h header and can be used in device
   tree sources.
 
   Specifying softreset control of devices
-- 
2.43.0


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

* Re: [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths
  2024-12-31 15:01 [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Dario Binacchi
  2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
@ 2025-01-02  8:25 ` Krzysztof Kozlowski
  2025-01-06 23:48 ` Stephen Boyd
  2 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-01-02  8:25 UTC (permalink / raw)
  To: Dario Binacchi
  Cc: linux-kernel, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, Stephen Boyd, devicetree, linux-arm-kernel,
	linux-clk, linux-stm32

On Tue, Dec 31, 2024 at 04:01:40PM +0100, Dario Binacchi wrote:
> The path of the two files was wrong even at the time they were added.
> Let's fix them so they can be correctly referenced.
> 
> Fixes: 722dc8a1d5c8 ("dt-bindings: rcc: stm32: add new compatible for STM32MP13 SoC")
> Fixes: 20107d7328cc ("dt-bindings: rcc: Convert stm32mp1 rcc bindings to json-schema")
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
> 
>  Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Acked-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path
  2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
@ 2025-01-02  8:26   ` Krzysztof Kozlowski
  2025-01-06 23:48   ` Stephen Boyd
  1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-01-02  8:26 UTC (permalink / raw)
  To: Dario Binacchi
  Cc: linux-kernel, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, Stephen Boyd, devicetree, linux-arm-kernel,
	linux-clk, linux-stm32

On Tue, Dec 31, 2024 at 04:01:41PM +0100, Dario Binacchi wrote:
> All other paths referenced in the file follow a scheme starting from the
> Linux root. The patch adjusts the single file that deviated from this
> scheme, making it consistent with the others.
> 
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---

Acked-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path
  2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
  2025-01-02  8:26   ` Krzysztof Kozlowski
@ 2025-01-06 23:48   ` Stephen Boyd
  1 sibling, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2025-01-06 23:48 UTC (permalink / raw)
  To: Dario Binacchi, linux-kernel
  Cc: Dario Binacchi, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, devicetree, linux-arm-kernel, linux-clk, linux-stm32

Quoting Dario Binacchi (2024-12-31 07:01:41)
> All other paths referenced in the file follow a scheme starting from the
> Linux root. The patch adjusts the single file that deviated from this
> scheme, making it consistent with the others.
> 
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---

Applied to clk-next

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

* Re: [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths
  2024-12-31 15:01 [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Dario Binacchi
  2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
  2025-01-02  8:25 ` [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Krzysztof Kozlowski
@ 2025-01-06 23:48 ` Stephen Boyd
  2 siblings, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2025-01-06 23:48 UTC (permalink / raw)
  To: Dario Binacchi, linux-kernel
  Cc: Dario Binacchi, Alexandre Torgue, Conor Dooley, Gabriel Fernandez,
	Krzysztof Kozlowski, Maxime Coquelin, Michael Turquette,
	Rob Herring, devicetree, linux-arm-kernel, linux-clk, linux-stm32

Quoting Dario Binacchi (2024-12-31 07:01:40)
> The path of the two files was wrong even at the time they were added.
> Let's fix them so they can be correctly referenced.
> 
> Fixes: 722dc8a1d5c8 ("dt-bindings: rcc: stm32: add new compatible for STM32MP13 SoC")
> Fixes: 20107d7328cc ("dt-bindings: rcc: Convert stm32mp1 rcc bindings to json-schema")
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---

Applied to clk-next

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

end of thread, other threads:[~2025-01-06 23:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-31 15:01 [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Dario Binacchi
2024-12-31 15:01 ` [PATCH 2/2] dt-bindings: clock: st,stm32mp1-rcc: complete the reference path Dario Binacchi
2025-01-02  8:26   ` Krzysztof Kozlowski
2025-01-06 23:48   ` Stephen Boyd
2025-01-02  8:25 ` [PATCH 1/2] dt-bindings: clock: st,stm32mp1-rcc: fix reference paths Krzysztof Kozlowski
2025-01-06 23:48 ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).