]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
libfdt: Increase namespace-pollution paranoia
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 9 Jul 2008 04:10:24 +0000 (14:10 +1000)
committerGerald Van Baren <vanbaren@cideas.com>
Mon, 25 Aug 2008 02:20:49 +0000 (22:20 -0400)
commitfc7758ee4f5782878f2e96876b7bc56cfee0ac66
treed2b1bf6f4f5104265cfaccca64ac043955e2ff8a
parentc66830263af19831f2b7db307f79d1943febf7f9
libfdt: Increase namespace-pollution paranoia

libfdt is supposed to easy to embed in projects all and sundry.
Often, it won't be practical to separate the embedded libfdt's
namespace from that of the surrounding project.  Which means there can
be namespace conflicts between even libfdt's internal/static functions
and functions or macros coming from the surrounding project's headers
via libfdt_env.h.

This patch, therefore, renames a bunch of libfdt internal functions
and macros and makes a few other chances to reduce the chances of
namespace collisions with embedding projects.  Specifically:
- Internal functions (even static ones) are now named _fdt_*()

- The type and (static) global for the error table in
          fdt_strerror() gain an fdt_ prefix

- The unused macro PALIGN is removed

- The memeq and streq macros are removed and open-coded in the
          users (they were only used once each)

- Other macros gain an FDT_ prefix

- To save some of the bulk from the previous change, an
          FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
          FDT_ALIGN(x, FDT_TAGSIZE)

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
libfdt/fdt.c
libfdt/fdt_ro.c
libfdt/fdt_rw.c
libfdt/fdt_strerror.c
libfdt/fdt_sw.c
libfdt/fdt_wip.c
libfdt/libfdt_internal.h