Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pinctrl: s3c64xx: Fix build error caused by undefined chained_irq_enter

Commit de88cbb7 moved definitions of chained_irq_enter and
chained_irq_exit to a generic header, which must be now included instead
of the legacy arch-specific one.

This patch fixes build error caused by including the legacy header
leading to undefined chained_irq_enter and chained_irq_exit symbols.

Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Tomasz Figa and committed by
Linus Walleij
a0d4262a f07512e6

+1 -2
+1 -2
drivers/pinctrl/pinctrl-s3c64xx.c
··· 22 22 #include <linux/irq.h> 23 23 #include <linux/of_irq.h> 24 24 #include <linux/io.h> 25 + #include <linux/irqchip/chained_irq.h> 25 26 #include <linux/slab.h> 26 27 #include <linux/err.h> 27 - 28 - #include <asm/mach/irq.h> 29 28 30 29 #include "pinctrl-samsung.h" 31 30