[PATCH] clk: fixed-rate: add devm_clk_hw_register_fixed_rate_parent_data()

Nikita Shubin via B4 Relay posted 1 patch 1 year, 3 months ago
include/linux/clk-provider.h | 14 ++++++++++++++
1 file changed, 14 insertions(+)
[PATCH] clk: fixed-rate: add devm_clk_hw_register_fixed_rate_parent_data()
Posted by Nikita Shubin via B4 Relay 1 year, 3 months ago
From: Nikita Shubin <nikita.shubin@maquefel.me>

Add devm_clk_hw_register_fixed_rate_parent_data(), devres-managed helper
to register fixed-rate clock with parent_data.

Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
---
Hello Stephen!

Sending devm version of clk_hw_register_fixed_rate_parent_data(),
as promised in:

https://lore.kernel.org/lkml/79cb209c6c5a14ae4d6a015f714c58d4.sboyd@kernel.org/
---
 include/linux/clk-provider.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index 4a537260f655..7e43caabb54b 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -393,6 +393,20 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
 #define devm_clk_hw_register_fixed_rate(dev, name, parent_name, flags, fixed_rate)  \
 	__clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), NULL, \
 				     NULL, (flags), (fixed_rate), 0, 0, true)
+/**
+ * devm_clk_hw_register_fixed_rate_parent_data - register fixed-rate clock with
+ * the clock framework
+ * @dev: device that is registering this clock
+ * @name: name of this clock
+ * @parent_data: parent clk data
+ * @flags: framework-specific flags
+ * @fixed_rate: non-adjustable clock rate
+ */
+#define devm_clk_hw_register_fixed_rate_parent_data(dev, name, parent_data, flags, \
+						    fixed_rate)			   \
+	__clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL,		   \
+				     (parent_data), (flags), (fixed_rate), 0,	   \
+				     0, true)
 /**
  * clk_hw_register_fixed_rate_parent_hw - register fixed-rate clock with
  * the clock framework

---
base-commit: 88fac17500f4ea49c7bac136cf1b27e7b9980075
change-id: 20240904-devm_clk_hw_register_fixed_rate_parent_data-d24713019d24

Best regards,
-- 
Nikita Shubin <nikita.shubin@maquefel.me>
Re: [PATCH] clk: fixed-rate: add devm_clk_hw_register_fixed_rate_parent_data()
Posted by Stephen Boyd 1 year, 3 months ago
Quoting Nikita Shubin via B4 Relay (2024-09-04 04:41:07)
> From: Nikita Shubin <nikita.shubin@maquefel.me>
> 
> Add devm_clk_hw_register_fixed_rate_parent_data(), devres-managed helper
> to register fixed-rate clock with parent_data.
> 
> Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
> ---

Applied to clk-next