[PATCH v12 01/10] clk: Export __clk_put and __clk_get so they can be used by modules

From: Tomeu Vizoso
Date: Mon Sep 22 2014 - 10:13:12 EST


This is needed for the split between provider and user clk APIs, for clocks
that are implemented in modules.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@xxxxxxxxxxxxx>
---
drivers/clk/clk.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index b76fa69..5db9710 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2197,6 +2197,7 @@ int __clk_get(struct clk *clk)
}
return 1;
}
+EXPORT_SYMBOL(__clk_get);

void __clk_put(struct clk *clk)
{
@@ -2209,6 +2210,7 @@ void __clk_put(struct clk *clk)

module_put(clk->owner);
}
+EXPORT_SYMBOL(__clk_put);

/*** clk rate change notifiers ***/

--
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/