[U-Boot] [i.MX8MM+CCF 11/41] clk: fixed_rate: export clk_fixed_rate
Peng Fan
peng.fan at nxp.com
Tue Apr 30 10:18:08 UTC 2019
Export the structure for others to use.
Signed-off-by: Peng Fan <peng.fan at nxp.com>
---
drivers/clk/clk_fixed_rate.c | 8 +-------
include/linux/clk-provider.h | 7 +++++++
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/clk/clk_fixed_rate.c b/drivers/clk/clk_fixed_rate.c
index 089f060a23..069e643fbc 100644
--- a/drivers/clk/clk_fixed_rate.c
+++ b/drivers/clk/clk_fixed_rate.c
@@ -6,13 +6,7 @@
#include <common.h>
#include <clk-uclass.h>
#include <dm.h>
-
-struct clk_fixed_rate {
- struct clk clk;
- unsigned long fixed_rate;
-};
-
-#define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_platdata(dev))
+#include <linux/clk-provider.h>
static ulong clk_fixed_rate_get_rate(struct clk *clk)
{
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index 3ed0db86d2..b2bed768b6 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -112,6 +112,13 @@ struct clk_fixed_factor {
#define to_clk_fixed_factor(_clk) container_of(_clk, struct clk_fixed_factor,\
clk)
+struct clk_fixed_rate {
+ struct clk clk;
+ unsigned long fixed_rate;
+};
+
+#define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_platdata(dev))
+
int clk_register(struct clk *clk, const char *drv_name,
ulong drv_data, const char *name,
const char *parent_name);
--
2.16.4
More information about the U-Boot
mailing list