Re: libfdt: Make fdt_string() return a const pointer

2007-10-23 Thread Jon Loeliger
So, like, the other day David Gibson mumbled: Applied. But apparently not pushed out to the public tree... Oh, sorry. I got side-tracked... Coming up... jdl ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org

Re: libfdt: Make fdt_string() return a const pointer

2007-10-22 Thread Jon Loeliger
So, like, the other day David Gibson mumbled: Currently, fdt_string() returns a (non-const) char *, despite taking a const void *fdt. This is inconsistent with all the other read-only functions which all return const pointers into the blob. This patch fixes that. Signed-off-by: David

libfdt: Make fdt_string() return a const pointer

2007-10-17 Thread David Gibson
Currently, fdt_string() returns a (non-const) char *, despite taking a const void *fdt. This is inconsistent with all the other read-only functions which all return const pointers into the blob. This patch fixes that. Signed-off-by: David Gibson [EMAIL PROTECTED] Index: dtc/libfdt/fdt_ro.c