mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
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 <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>
This commit is contained in:
parent
7535b8bef0
commit
691e06c0ff
@ -107,11 +107,13 @@ void tegra_gpio_enable(int gpio)
|
|||||||
{
|
{
|
||||||
tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1);
|
tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(tegra_gpio_enable);
|
||||||
|
|
||||||
void tegra_gpio_disable(int gpio)
|
void tegra_gpio_disable(int gpio)
|
||||||
{
|
{
|
||||||
tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 0);
|
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)
|
static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user