diff mbox series

[1/3] dt-bindings: clk: at91: Add clock IDs for the slow clock controller

Message ID 20240826173116.3628337-2-claudiu.beznea@tuxon.dev
State Not Applicable
Headers show
Series clk: at91: sckc: Add macros for the slow clock | expand

Checks

Context Check Description
robh/checkpatch success
robh/patch-applied success

Commit Message

claudiu beznea Aug. 26, 2024, 5:31 p.m. UTC
Add clock IDs for the slow clock controller. Previously, raw numbers
were used (0 or 1) for clocks generated by the slow clock controller. This
leads to confusion and wrong IDs were used on few device trees. To avoid
this add macros.

Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
---
 include/dt-bindings/clock/at91.h | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Krzysztof Kozlowski Aug. 27, 2024, 6:43 a.m. UTC | #1
On Mon, Aug 26, 2024 at 08:31:14PM +0300, Claudiu Beznea wrote:
> Add clock IDs for the slow clock controller. Previously, raw numbers
> were used (0 or 1) for clocks generated by the slow clock controller. This
> leads to confusion and wrong IDs were used on few device trees. To avoid
> this add macros.
> 
> Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
> ---
>  include/dt-bindings/clock/at91.h | 4 ++++

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

Best regards,
Krzysztof
diff mbox series

Patch

diff --git a/include/dt-bindings/clock/at91.h b/include/dt-bindings/clock/at91.h
index 6ede88c3992d..99f4767ff6bb 100644
--- a/include/dt-bindings/clock/at91.h
+++ b/include/dt-bindings/clock/at91.h
@@ -55,4 +55,8 @@ 
 #define AT91_PMC_GCKRDY		24		/* Generated Clocks */
 #endif
 
+/* Slow clock. */
+#define SCKC_MD_SLCK		0
+#define SCKC_TD_SLCK		1
+
 #endif