diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-07 11:57:44 +0000 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-01-27 15:33:47 -0800 |
commit | 9f9605c2eda9679e6f63c605cbd9cbf6a9a7f3fa (patch) | |
tree | 318072a09a23b66c553fd910f602447ef857d5dd /arch/arm/mach-omap2/include | |
parent | 6fb1b304255efc5c4c93874ac8c066272e257e28 (diff) | |
download | kernel_samsung_smdk4412-9f9605c2eda9679e6f63c605cbd9cbf6a9a7f3fa.zip kernel_samsung_smdk4412-9f9605c2eda9679e6f63c605cbd9cbf6a9a7f3fa.tar.gz kernel_samsung_smdk4412-9f9605c2eda9679e6f63c605cbd9cbf6a9a7f3fa.tar.bz2 |
omap2+: Fix unused variable warning for omap_irq_base
Commit 5d190c40100793a6dfc37bf325677c10f3c80edf
(omap2+: Initialize omap_irq_base for entry-macro.S from
platform code) simplified the handling of omap_irq_base
for multi-omap builds. However, this patch also introduced
a build warning for !MULTI_OMAP2 builds:
arch/arm/mach-omap2/io.c: In function 'omap_irq_base_init':
arch/arm/mach-omap2/io.c:322: warning: unused variable 'omap_irq_base'
Fix this by removing the ifdef. Also simplify things further
by moving omap_irq_base out of entry-macro.S.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
[tony@atomide.com: updated comments]
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/include')
-rw-r--r-- | arch/arm/mach-omap2/include/mach/entry-macro.S | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/arm/mach-omap2/include/mach/entry-macro.S b/arch/arm/mach-omap2/include/mach/entry-macro.S index befa321..81985a6 100644 --- a/arch/arm/mach-omap2/include/mach/entry-macro.S +++ b/arch/arm/mach-omap2/include/mach/entry-macro.S @@ -38,20 +38,6 @@ */ #ifdef MULTI_OMAP2 - -/* - * We use __glue to avoid errors with multiple definitions of - * .globl omap_irq_base as it's included from entry-armv.S but not - * from entry-common.S. - */ -#ifdef __glue - .pushsection .data - .globl omap_irq_base -omap_irq_base: - .word 0 - .popsection -#endif - /* * Configure the interrupt base on the first interrupt. * See also omap_irq_base_init for setting omap_irq_base. |