aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/include/asm/global_data.h')
-rw-r--r--arch/arm/include/asm/global_data.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index 37ac0daa70..7611d0a18b 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -24,6 +24,10 @@
24#ifndef __ASM_GBL_DATA_H 24#ifndef __ASM_GBL_DATA_H
25#define __ASM_GBL_DATA_H 25#define __ASM_GBL_DATA_H
26 26
27#ifdef CONFIG_OMAP
28#include <asm/omap_boot.h>
29#endif
30
27/* Architecture-specific global data */ 31/* Architecture-specific global data */
28struct arch_global_data { 32struct arch_global_data {
29#if defined(CONFIG_FSL_ESDHC) 33#if defined(CONFIG_FSL_ESDHC)
@@ -51,6 +55,10 @@ struct arch_global_data {
51 unsigned long tlb_addr; 55 unsigned long tlb_addr;
52 unsigned long tlb_size; 56 unsigned long tlb_size;
53#endif 57#endif
58
59#ifdef CONFIG_OMAP
60 struct omap_boot_parameters omap_boot_params;
61#endif
54}; 62};
55 63
56#include <asm-generic/global_data.h> 64#include <asm-generic/global_data.h>