diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-12-06 16:49:55 +0100 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-12-16 14:02:50 -0700 |
commit | 44374afee87b5384f2ee3c2e5e5b8419c1573efb (patch) | |
tree | 1d9a2965b7e457c7b9a665dc4ae4cd826c47c412 /arch/arm/mach-tegra | |
parent | ccab7983bdb3d78da3fb918902a739fc79e018be (diff) |
ARM: tegra: Export tegra_powergate_power_off()
This function can be used by drivers, which in turn may be built as
modules. Export the symbol so it is available to modules.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/powergate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c index ed4d3d15b8d..e8ccb297333 100644 --- a/arch/arm/mach-tegra/powergate.c +++ b/arch/arm/mach-tegra/powergate.c @@ -109,6 +109,7 @@ int tegra_powergate_power_off(int id) return tegra_powergate_set(id, false); } +EXPORT_SYMBOL(tegra_powergate_power_off); int tegra_powergate_is_powered(int id) { |