29 lines
772 B
Diff
29 lines
772 B
Diff
diff --git a/drivers/clk/tegra/clk-periph.c b/drivers/clk/tegra/clk-periph.c
|
|
index 788486e..2f4d0e3 100644
|
|
--- a/drivers/clk/tegra/clk-periph.c
|
|
+++ b/drivers/clk/tegra/clk-periph.c
|
|
@@ -18,6 +18,7 @@
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/err.h>
|
|
+#include <linux/export.h>
|
|
|
|
#include "clk.h"
|
|
|
|
@@ -128,6 +129,7 @@ void tegra_periph_reset_deassert(struct clk *c)
|
|
|
|
tegra_periph_reset(gate, 0);
|
|
}
|
|
+EXPORT_SYMBOL_GPL(tegra_periph_reset_deassert);
|
|
|
|
void tegra_periph_reset_assert(struct clk *c)
|
|
{
|
|
@@ -147,6 +149,7 @@ void tegra_periph_reset_assert(struct clk *c)
|
|
|
|
tegra_periph_reset(gate, 1);
|
|
}
|
|
+EXPORT_SYMBOL_GPL(tegra_periph_reset_assert);
|
|
|
|
const struct clk_ops tegra_clk_periph_ops = {
|
|
.get_parent = clk_periph_get_parent,
|