commit | 9655c930f1f1c8396acff0cd57950ccb763e581c | [log] [tgz] |
---|---|---|
author | Wolfgang Denk <wd@denx.de> | Tue Nov 19 08:01:44 2013 +0100 |
committer | Tom Rini <trini@ti.com> | Mon Nov 25 10:41:55 2013 -0500 |
tree | 37bc6605d04b9f38b89df29e229792fecf58a7ef | |
parent | 8fd32a2c573347757e09b9deaa13234cf5109aeb [diff] |
blackfin: don't use 'bool' when it causes problems The use of 'bool' data types in globally used header files cases build errors like this: In file included from arch/blackfin/include/asm/blackfin.h:13:0, from include/common.h:92, from cmd_test.c:17: arch/blackfin/include/asm/blackfin_local.h:54:1: error: unknown type name 'bool' Use plain 'int' instead to avoid such kind of trouble. Signed-off-by: Wolfgang Denk <wd@denx.de>