diff options
author | Stefan Roese <sr@denx.de> | 2007-02-20 10:58:04 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-02-20 10:58:04 +0100 |
commit | 90b0cf47eb23e5f3461d3d957f6898386907fd99 (patch) | |
tree | 4acaab40f79d89c08cad928fdf52cad3a93dbdec /common/ft_build.c | |
parent | 4745acaa1a603b67f6b9b7970365ebadd7d6586f (diff) | |
parent | eb867a76238fb38e952c37871b16d0d7fd61c95f (diff) | |
download | u-boot-imx-90b0cf47eb23e5f3461d3d957f6898386907fd99.zip u-boot-imx-90b0cf47eb23e5f3461d3d957f6898386907fd99.tar.gz u-boot-imx-90b0cf47eb23e5f3461d3d957f6898386907fd99.tar.bz2 |
Merge with /home/stefan/git/u-boot/denx-merge-sr
Diffstat (limited to 'common/ft_build.c')
-rw-r--r-- | common/ft_build.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/common/ft_build.c b/common/ft_build.c index 980e40f..5a0575e 100644 --- a/common/ft_build.c +++ b/common/ft_build.c @@ -29,6 +29,7 @@ #include <stddef.h> #include <ft_build.h> +#include <linux/ctype.h> #undef DEBUG @@ -180,11 +181,6 @@ void ft_finalize_tree(struct ft_cxt *cxt) { bph->dt_strings_size = cxt->p_end - cxt->p; } -static inline int isprint(int c) -{ - return c >= 0x20 && c <= 0x7e; -} - static int is_printable_string(const void *data, int len) { const char *s = data; |