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

Commit 33265b17 authored by Ben Dooks's avatar Ben Dooks Committed by Linus Walleij
Browse files

gpiolib: make lineevent_irq_thread static



The lineevent_irq_thread is not exported, so make it static
to fix the following warning:

drivers/gpio/gpiolib.c:654:13: warning: symbol 'lineevent_irq_thread' was not declared. Should it be static?

Signed-off-by: default avatarBen Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e2f608be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -653,7 +653,7 @@ static const struct file_operations lineevent_fileops = {
#endif
};

irqreturn_t lineevent_irq_thread(int irq, void *p)
static irqreturn_t lineevent_irq_thread(int irq, void *p)
{
	struct lineevent_state *le = p;
	struct gpioevent_data ge;