diff options
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/mach/arch.h | 7 |
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 { | |||
48 | extern struct machine_desc *machine_desc; | 48 | extern struct machine_desc *machine_desc; |
49 | 49 | ||
50 | /* | 50 | /* |
51 | * Machine type table - also only accessible during boot | ||
52 | */ | ||
53 | extern 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 | */ |