]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mpc5200: a3m071/a4m2k: Fix problem with increased global_data struct
authorStefan Roese <sr@denx.de>
Thu, 25 Apr 2013 23:10:02 +0000 (23:10 +0000)
committerWolfgang Denk <wd@denx.de>
Thu, 2 May 2013 18:45:44 +0000 (20:45 +0200)
The v2013.04 release has this patch set included:

5cb48582 "Add architecture-specific global data"

With this, the global_data struct is now common and new variables
have been added. Resulting in a bigger struct. Unfortunately the
currently allocated 128 bytes are just a bit too small for this
new struct.

This patch now uses the automatically generated struct size instead to
not run into this problem again.

Please note that this problem might hit some other platforms which
currently reserve a tight space of 128 bytes for the global_data
struct!

Signed-off-by: Stefan Roese <sr@denx.de>
include/configs/a3m071.h

index 662d8ca3c8401d684a0f50350c59a1e244b59afe..1c055a3b98843a6d4ef15e9615d358ba1ff1691f 100644 (file)
 #define CONFIG_SYS_INIT_RAM_ADDR       MPC5XXX_SRAM
 #define CONFIG_SYS_INIT_RAM_END                MPC5XXX_SRAM_SIZE
 
-
-#define CONFIG_SYS_GBL_DATA_SIZE       128
 #define CONFIG_SYS_GBL_DATA_OFFSET     (CONFIG_SYS_INIT_RAM_END - \
-                                        CONFIG_SYS_GBL_DATA_SIZE)
+                                        GENERATED_GBL_DATA_SIZE)
 #define CONFIG_SYS_INIT_SP_OFFSET      CONFIG_SYS_GBL_DATA_OFFSET
 
 #define CONFIG_SYS_MONITOR_BASE                CONFIG_SYS_TEXT_BASE