aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2013-10-29 19:06:44 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2013-10-29 19:06:44 -0400
commit5e4432d3bd6b5b19e10bb263e7dbe8e74d7cf1c2 (patch)
tree6980287922e9e8e70c18d343bf426176aec43bbd
parent830fd4d6de1785942e34babe0a8984f72b534b25 (diff)
ARM: fix misplaced arch_virt_to_idmap()
Olof Johansson reported: In file included from arch/arm/include/asm/page.h:163:0, from include/linux/mm_types.h:16, from include/linux/sched.h:24, from arch/arm/kernel/asm-offsets.c:13: arch/arm/include/asm/memory.h: In function '__virt_to_idmap': arch/arm/include/asm/memory.h:300:6: error: 'arch_virt_to_idmap' undeclared (first use in this function) caused by arch_virt_to_idmap being placed inside a different preprocessor conditional to its user. Move it along side its user. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--arch/arm/include/asm/memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/include/asm/memory.h b/arch/arm/include/asm/memory.h
index 6748d6295a1a..4dd21457ef9d 100644
--- a/arch/arm/include/asm/memory.h
+++ b/arch/arm/include/asm/memory.h
@@ -174,7 +174,6 @@
174#define __PV_BITS_31_24 0x81000000 174#define __PV_BITS_31_24 0x81000000
175#define __PV_BITS_7_0 0x81 175#define __PV_BITS_7_0 0x81
176 176
177extern phys_addr_t (*arch_virt_to_idmap) (unsigned long x);
178extern u64 __pv_phys_offset; 177extern u64 __pv_phys_offset;
179extern u64 __pv_offset; 178extern u64 __pv_offset;
180extern void fixup_pv_table(const void *, unsigned long); 179extern void fixup_pv_table(const void *, unsigned long);
@@ -290,6 +289,8 @@ static inline void *phys_to_virt(phys_addr_t x)
290#define __va(x) ((void *)__phys_to_virt((phys_addr_t)(x))) 289#define __va(x) ((void *)__phys_to_virt((phys_addr_t)(x)))
291#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) 290#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
292 291
292extern phys_addr_t (*arch_virt_to_idmap)(unsigned long x);
293
293/* 294/*
294 * These are for systems that have a hardware interconnect supported alias of 295 * These are for systems that have a hardware interconnect supported alias of
295 * physical memory for idmap purposes. Most cases should leave these 296 * physical memory for idmap purposes. Most cases should leave these