summaryrefslogtreecommitdiffstats
path: root/libfdt/fdt_ro.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2008-02-18 18:06:31 +1100
committerGerald Van Baren <vanbaren@cideas.com>2008-03-18 21:03:45 -0400
commitd0ccb9b140b472039732de102fc14597eedb14df (patch)
tree121a2e532df523cca768bafaf9cd527a1c00a295 /libfdt/fdt_ro.c
parentfe30a354cdbb808b5f15366a935b151a4ccee74f (diff)
downloadblackbird-obmc-uboot-d0ccb9b140b472039732de102fc14597eedb14df.tar.gz
blackbird-obmc-uboot-d0ccb9b140b472039732de102fc14597eedb14df.zip
libfdt: Trivial cleanup for CHECK_HEADER)
Currently the CHECK_HEADER() macro is defined local to fdt_ro.c. However, there are a handful of functions (fdt_move, rw_check_header, fdt_open_into) from other files which could also use it (currently they open-code something more-or-less identical). Therefore, this patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those places. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'libfdt/fdt_ro.c')
-rw-r--r--libfdt/fdt_ro.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c
index f08941a7ad..15d5f6b585 100644
--- a/libfdt/fdt_ro.c
+++ b/libfdt/fdt_ro.c
@@ -55,13 +55,6 @@
#include "libfdt_internal.h"
-#define CHECK_HEADER(fdt) \
- { \
- int err; \
- if ((err = fdt_check_header(fdt)) != 0) \
- return err; \
- }
-
static int nodename_eq(const void *fdt, int offset,
const char *s, int len)
{
OpenPOWER on IntegriCloud