aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/include
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/include')
-rw-r--r--arch/arm/include/asm/mach/arch.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/arch.h b/arch/arm/include/asm/mach/arch.h
index bf13b814c1b8..4764e67fb93d 100644
--- a/arch/arm/include/asm/mach/arch.h
+++ b/arch/arm/include/asm/mach/arch.h
@@ -48,6 +48,13 @@ struct machine_desc {
48extern struct machine_desc *machine_desc; 48extern struct machine_desc *machine_desc;
49 49
50/* 50/*
51 * Machine type table - also only accessible during boot
52 */
53extern struct machine_desc __arch_info_begin[], __arch_info_end[];
54#define for_each_machine_desc(p) \
55 for (p = __arch_info_begin; p < __arch_info_end; p++)
56
57/*
51 * Set of macros to define architecture features. This is built into 58 * Set of macros to define architecture features. This is built into
52 * a table by the linker. 59 * a table by the linker.
53 */ 60 */