diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-11-11 19:08:33 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-01-17 09:17:26 -0500 |
commit | dc6bc645e0cc1939b31cc54346415cf8e0dffc88 (patch) | |
tree | 7f1e0ee52bbe5f793948921e4f1cead6e478c348 /include/asm-blackfin/blackfin_local.h | |
parent | b7659ef2e764f62fc334f0d970721496823e4888 (diff) | |
download | u-boot-imx-dc6bc645e0cc1939b31cc54346415cf8e0dffc88.zip u-boot-imx-dc6bc645e0cc1939b31cc54346415cf8e0dffc88.tar.gz u-boot-imx-dc6bc645e0cc1939b31cc54346415cf8e0dffc88.tar.bz2 |
Blackfin: fix L1 Instruction sizes on BF52x/BF54x
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/asm-blackfin/blackfin_local.h')
-rw-r--r-- | include/asm-blackfin/blackfin_local.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-blackfin/blackfin_local.h b/include/asm-blackfin/blackfin_local.h index 8ec7928..308014a 100644 --- a/include/asm-blackfin/blackfin_local.h +++ b/include/asm-blackfin/blackfin_local.h @@ -25,6 +25,8 @@ #ifndef __BLACKFIN_LOCAL_H__ #define __BLACKFIN_LOCAL_H__ +#include <asm/mem_map.h> + #define LO(con32) ((con32) & 0xFFFF) #define lo(con32) ((con32) & 0xFFFF) #define HI(con32) (((con32) >> 16) & 0xFFFF) |