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

Commit b8b8d793 authored by Nishanth Menon's avatar Nishanth Menon Committed by Samuel Ortiz
Browse files

mfd: Make twl6030_irq_set_wake static



twl6030_irq_set_wake is not used anywhere else in the kernel
except as irq_chip.irq_set_wake. No reason for it to be exported.

Also fixes build warning:
drivers/mfd/twl6030-irq.c:230:5: warning: symbol 'twl6030_irq_set_wake' was not declared. Should it be static?

Signed-off-by: default avatarNishanth Menon <nm@ti.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 3f8349e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -236,7 +236,7 @@ static inline void activate_irq(int irq)
#endif
#endif
}
}


int twl6030_irq_set_wake(struct irq_data *d, unsigned int on)
static int twl6030_irq_set_wake(struct irq_data *d, unsigned int on)
{
{
	if (on)
	if (on)
		atomic_inc(&twl6030_wakeirqs);
		atomic_inc(&twl6030_wakeirqs);