Skip to content

Commit

Permalink
pinctrl: s3c64xx: Fix build error caused by undefined chained_irq_enter
Browse files Browse the repository at this point in the history
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 <tomasz.figa@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Tomasz Figa authored and Linus Walleij committed Apr 23, 2013
1 parent f07512e commit a0d4262
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/pinctrl/pinctrl-s3c64xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
#include <linux/irq.h>
#include <linux/of_irq.h>
#include <linux/io.h>
#include <linux/irqchip/chained_irq.h>
#include <linux/slab.h>
#include <linux/err.h>

#include <asm/mach/irq.h>

#include "pinctrl-samsung.h"

#define NUM_EINT0 28
Expand Down

0 comments on commit a0d4262

Please sign in to comment.