projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28f0769
)
clk: qcom: Export gdsc_gx_do_nothing_enable() to modules
author
Stephen Boyd
<sboyd@kernel.org>
Fri, 24 Jul 2020 09:40:25 +0000
(
02:40
-0700)
committer
Stephen Boyd
<sboyd@kernel.org>
Fri, 24 Jul 2020 09:41:26 +0000
(
02:41
-0700)
A clk driver can be a module but the gdsc code is in the common module.
Export this symbol so that allmodconfig builds keep working.
Cc: Jonathan Marek <jonathan@marek.ca>
Fixes:
0638226dd095
("clk: qcom: add common gdsc_gx_do_nothing_enable for gpucc drivers")
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link:
https://lore.kernel.org/r/20200724094025.3261266-1-sboyd@kernel.org
drivers/clk/qcom/gdsc.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/clk/qcom/gdsc.c
b/drivers/clk/qcom/gdsc.c
index 6283977037177ea58ccf47b8a76ace12638a5330..7e4273f314f7945ddd0bed78510987a62fd6af21 100644
(file)
--- a/
drivers/clk/qcom/gdsc.c
+++ b/
drivers/clk/qcom/gdsc.c
@@
-6,6
+6,7
@@
#include <linux/bitops.h>
#include <linux/delay.h>
#include <linux/err.h>
+#include <linux/export.h>
#include <linux/jiffies.h>
#include <linux/kernel.h>
#include <linux/ktime.h>
@@
-458,3
+459,4
@@
int gdsc_gx_do_nothing_enable(struct generic_pm_domain *domain)
/* Do nothing but give genpd the impression that we were successful */
return 0;
}
+EXPORT_SYMBOL_GPL(gdsc_gx_do_nothing_enable);