commit | a5750b805828f471469d6ad31e052e83a564de2e | [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 | 4d1584bd0df86044a17daf3812b4a3b48913d970 [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>