diff options
| author | Arnd Bergmann <[email protected]> | 2012-03-02 22:32:24 +0000 |
|---|---|---|
| committer | Grant Likely <[email protected]> | 2012-03-12 17:42:49 +0000 |
| commit | 691e06c0ff2cd0cfe79db5c52baac4fe18ca55af (patch) | |
| tree | f1024d1dfd932ccaaffaa9a9a12f5dd77dde70e4 | |
| parent | gpio/gpio-stmpe: Fix the value returned by _get_value routine (diff) | |
| download | kernel-691e06c0ff2cd0cfe79db5c52baac4fe18ca55af.tar.gz kernel-691e06c0ff2cd0cfe79db5c52baac4fe18ca55af.zip | |
ARM: tegra: export tegra_gpio_{en,dis}able
These two functions are used in drivers that can be
modules, so they need to be exported.
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Alan Ott <[email protected]>
Acked-by: Olof Johansson <[email protected]>
Signed-off-by: Grant Likely <[email protected]>
| -rw-r--r-- | drivers/gpio/gpio-tegra.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c index bdc293791590..96662cc05ff9 100644 --- a/drivers/gpio/gpio-tegra.c +++ b/drivers/gpio/gpio-tegra.c @@ -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) { |
