Message ID | 20210928235635.1348330-6-willmcvicker@google.com (mailing list archive) |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | arm64: Kconfig: Update ARCH_EXYNOS select configs | expand |
Quoting Will McVicker (2021-09-28 16:56:22) > This symbol is needed to modularize the samsung clk drivers. It's used > to get the clock using the clock name. > > Signed-off-by: Will McVicker <willmcvicker@google.com> > --- > drivers/clk/clk.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c > index 65508eb89ec9..f2aa4b49adfc 100644 > --- a/drivers/clk/clk.c > +++ b/drivers/clk/clk.c > @@ -612,6 +612,7 @@ struct clk *__clk_lookup(const char *name) > > return !core ? NULL : core->hw->clk; > } > +EXPORT_SYMBOL_GPL(__clk_lookup); I'd prefer we deleted this API. Can you make the samsung clk driver stop using it instead?
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 65508eb89ec9..f2aa4b49adfc 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -612,6 +612,7 @@ struct clk *__clk_lookup(const char *name) return !core ? NULL : core->hw->clk; } +EXPORT_SYMBOL_GPL(__clk_lookup); static void clk_core_get_boundaries(struct clk_core *core, unsigned long *min_rate,
This symbol is needed to modularize the samsung clk drivers. It's used to get the clock using the clock name. Signed-off-by: Will McVicker <willmcvicker@google.com> --- drivers/clk/clk.c | 1 + 1 file changed, 1 insertion(+)