aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Dunlap <[email protected]>2022-09-17 16:25:40 -0700
committerThomas Bogendoerfer <[email protected]>2022-09-19 16:30:48 +0200
commit502550123bee6a2ffa438409b5b9aad4d6db3a8c (patch)
tree63cee147f231f7319691508a948a4468f0fa68c5
parent80e78fcce86de0288793a0ef0f6acf37656ee4cf (diff)
MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko
The lantiq WDT driver uses clk_get_io(), which is not exported, so export it to fix a build error: ERROR: modpost: "clk_get_io" [drivers/watchdog/lantiq_wdt.ko] undefined! Fixes: 287e3f3f4e68 ("MIPS: lantiq: implement support for clkdev api") Signed-off-by: Randy Dunlap <[email protected]> Reported-by: kernel test robot <[email protected]> Cc: Thomas Bogendoerfer <[email protected]> Cc: John Crispin <[email protected]> Cc: [email protected] Signed-off-by: Thomas Bogendoerfer <[email protected]>
-rw-r--r--arch/mips/lantiq/clk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/lantiq/clk.c b/arch/mips/lantiq/clk.c
index 7a623684d9b5..2d5a0bcb0cec 100644
--- a/arch/mips/lantiq/clk.c
+++ b/arch/mips/lantiq/clk.c
@@ -50,6 +50,7 @@ struct clk *clk_get_io(void)
{
return &cpu_clk_generic[2];
}
+EXPORT_SYMBOL_GPL(clk_get_io);
struct clk *clk_get_ppe(void)
{