From: Mike Frysinger Date: Thu, 28 Oct 2010 01:10:58 +0000 (-0400) Subject: Blackfin: fix building after asm-offsets.h intro X-Git-Tag: v2010.12-rc2~85^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1fde3eb2d3f9a46c1dbd2e936ba6e4e6a82add3f;p=u-boot Blackfin: fix building after asm-offsets.h intro Since some of the defines in our config.h use the generated defines, we need to include the generated header. This fixes building of the Blackfin start.S file (where the stack is setup). Signed-off-by: Mike Frysinger --- diff --git a/arch/blackfin/include/asm/config.h b/arch/blackfin/include/asm/config.h index 34ca68c9d5..ae61402266 100644 --- a/arch/blackfin/include/asm/config.h +++ b/arch/blackfin/include/asm/config.h @@ -9,6 +9,9 @@ #ifndef __ASM_BLACKFIN_CONFIG_POST_H__ #define __ASM_BLACKFIN_CONFIG_POST_H__ +/* Some of our defines use this (like CONFIG_SYS_GBL_DATA_ADDR) */ +#include + #ifndef CONFIG_BFIN_SCRATCH_REG # define CONFIG_BFIN_SCRATCH_REG retn #endif