Selaa lähdekoodia

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>
Thierry Reding 12 vuotta sitten
vanhempi
commit
357281ed09
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      arch/arm/mach-tegra/powergate.c

+ 2 - 0
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);