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>
This commit is contained in:
Thierry Reding 2014-02-25 17:08:36 +01:00 committed by Stephen Warren
parent a7cbe92cef
commit 357281ed09

View File

@ -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);