Skip to content

Commit a0d4262

Browse files
tom3qlinusw
authored andcommitted
pinctrl: s3c64xx: Fix build error caused by undefined chained_irq_enter
Commit de88cbb 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 <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent f07512e commit a0d4262

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/pinctrl/pinctrl-s3c64xx.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@
2222
#include <linux/irq.h>
2323
#include <linux/of_irq.h>
2424
#include <linux/io.h>
25+
#include <linux/irqchip/chained_irq.h>
2526
#include <linux/slab.h>
2627
#include <linux/err.h>
2728

28-
#include <asm/mach/irq.h>
29-
3029
#include "pinctrl-samsung.h"
3130

3231
#define NUM_EINT0 28

0 commit comments

Comments
 (0)