]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
ARM: tegra: export tegra_gpio_{en,dis}able
authorArnd Bergmann <arnd@arndb.de>
Fri, 2 Mar 2012 22:32:24 +0000 (17:32 -0500)
committerGrant Likely <grant.likely@secretlab.ca>
Mon, 12 Mar 2012 17:42:49 +0000 (11:42 -0600)
These two functions are used in drivers that can be
modules, so they need to be exported.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alan Ott <alan@signal11.us>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/gpio/gpio-tegra.c

index bdc2937915906fa7a7589b02e258daccb7b024f7..96662cc05ff9908df089670a597eb4cb5b34caea 100644 (file)
@@ -107,11 +107,13 @@ void tegra_gpio_enable(int gpio)
 {
        tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1);
 }
+EXPORT_SYMBOL_GPL(tegra_gpio_enable);
 
 void tegra_gpio_disable(int gpio)
 {
        tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 0);
 }
+EXPORT_SYMBOL_GPL(tegra_gpio_disable);
 
 static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
 {