gpio: tegra: Drop exporting static functions
Both tegra_gpio_enable() and tegra_gpio_disable() are static functions, it does not make sense to export them. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
924a09873c
commit
65b6ca4667
1 changed files with 0 additions and 2 deletions
|
@ -110,13 +110,11 @@ static 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);
|
|
||||||
|
|
||||||
static void tegra_gpio_disable(int gpio)
|
static 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 int tegra_gpio_request(struct gpio_chip *chip, unsigned offset)
|
static int tegra_gpio_request(struct gpio_chip *chip, unsigned offset)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue