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 коммит произвёл Stephen Warren
Родитель a7cbe92cef
Коммит 357281ed09
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

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