Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8700d0af authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij
Browse files

gpio: stmpe: Staticize non-exported symbols



Both stmpe_gpio_irq_map() and stmpe_gpio_irq_unmap() are not referenced
outside of this file, make them static.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 1cdd8d52
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -271,7 +271,7 @@ static irqreturn_t stmpe_gpio_irq(int irq, void *dev)
	return IRQ_HANDLED;
	return IRQ_HANDLED;
}
}


int stmpe_gpio_irq_map(struct irq_domain *d, unsigned int virq,
static int stmpe_gpio_irq_map(struct irq_domain *d, unsigned int virq,
			      irq_hw_number_t hwirq)
			      irq_hw_number_t hwirq)
{
{
	struct stmpe_gpio *stmpe_gpio = d->host_data;
	struct stmpe_gpio *stmpe_gpio = d->host_data;
@@ -292,7 +292,7 @@ int stmpe_gpio_irq_map(struct irq_domain *d, unsigned int virq,
	return 0;
	return 0;
}
}


void stmpe_gpio_irq_unmap(struct irq_domain *d, unsigned int virq)
static void stmpe_gpio_irq_unmap(struct irq_domain *d, unsigned int virq)
{
{
#ifdef CONFIG_ARM
#ifdef CONFIG_ARM
	set_irq_flags(virq, 0);
	set_irq_flags(virq, 0);