diff options
author | Thierry Reding <treding@nvidia.com> | 2014-02-25 17:08:36 +0100 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2014-02-25 13:16:32 -0700 |
commit | 357281ed092ac5713137fa42b447cdd68a4aa56e (patch) | |
tree | f0955d0cca2b94fe5450c2935e86ec6d509226b2 /arch/arm/mach-tegra | |
parent | a7cbe92cef278964a2bdb963c1da302a180bdf2a (diff) |
ARM: tegra: Export I/O rail functions
The I/O rail functions can be used by drivers that are buildable as
modules. Exporting the functions makes sure that they're available.
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c index 3d0c537d9b9..4cefc5cd6be 100644 --- a/arch/arm/mach-tegra/powergate.c +++ b/arch/arm/mach-tegra/powergate.c @@ -484,6 +484,7 @@ int tegra_io_rail_power_on(int id) return 0; } +EXPORT_SYMBOL(tegra_io_rail_power_on); int tegra_io_rail_power_off(int id) { @@ -511,3 +512,4 @@ int tegra_io_rail_power_off(int id) return 0; } +EXPORT_SYMBOL(tegra_io_rail_power_off); |