diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-02-12 15:11:21 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2011-02-12 15:11:21 +1100 |
commit | de47cbe6860654cc6c0cf8820d9165f059c7cf38 (patch) | |
tree | 25d42aca61d55cea70a2663511ef19850873e5c3 | |
parent | d1a79b71f7c5fd9e277e0feb35f049289df1ed0e (diff) | |
download | u-boot-imx-de47cbe6860654cc6c0cf8820d9165f059c7cf38.zip u-boot-imx-de47cbe6860654cc6c0cf8820d9165f059c7cf38.tar.gz u-boot-imx-de47cbe6860654cc6c0cf8820d9165f059c7cf38.tar.bz2 |
x86: Fix definition of global_data struct for asm-offsets.c
-rw-r--r-- | arch/i386/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/include/asm/global_data.h b/arch/i386/include/asm/global_data.h index e3f8a25..e9000c3 100644 --- a/arch/i386/include/asm/global_data.h +++ b/arch/i386/include/asm/global_data.h @@ -35,7 +35,7 @@ #ifndef __ASSEMBLY__ -typedef struct { +typedef struct global_data { bd_t *bd; unsigned long flags; unsigned long baudrate; |