diff options
author | Tomasz Figa <t.figa@samsung.com> | 2013-06-15 09:28:55 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-06-19 01:30:30 +0900 |
commit | 6e726ea4f50e7fea5844a2a0fee29d6d3d2e8bdf (patch) | |
tree | 82f507452c8cbf0475d347d6d0705a5bff8b9dd0 /arch/arm/mach-exynos | |
parent | 07fbe13debe71881581bafb552554a5ddf307cd0 (diff) | |
download | talos-obmc-linux-6e726ea4f50e7fea5844a2a0fee29d6d3d2e8bdf.tar.gz talos-obmc-linux-6e726ea4f50e7fea5844a2a0fee29d6d3d2e8bdf.zip |
ARM: EXYNOS: Select SPARSE_IRQ for Exynos
This patch adds selection of CONFIG_SPARSE_IRQ for ARCH_EXYNOS, since it
is required by multiplatform and allows to remove the legacy mach/irqs.h
header.
To make this possible, a dummy IRQ_EINT_BIT macro is added to pm-core.h
header to allow plat-samsung/pm.c compile. This macro is irrelevant for
Exynos and will be removed after reworking Samsung pm code for
multiplatform compatibility.
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r-- | arch/arm/mach-exynos/include/mach/pm-core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/include/mach/pm-core.h b/arch/arm/mach-exynos/include/mach/pm-core.h index dd62559a2ed4..71e6b89719ab 100644 --- a/arch/arm/mach-exynos/include/mach/pm-core.h +++ b/arch/arm/mach-exynos/include/mach/pm-core.h @@ -70,6 +70,7 @@ static inline void samsung_pm_saved_gpios(void) } /* Compatibility definitions to make plat-samsung/pm.c compile */ +#define IRQ_EINT_BIT(x) 1 #define s3c_irqwake_intallow 0 #define s3c_irqwake_eintallow 0 |