* libfdt: Make fdt_string() return a const pointer
@ 2007-10-18 2:10 David Gibson
2007-10-22 16:37 ` Jon Loeliger
0 siblings, 1 reply; 4+ messages in thread
From: David Gibson @ 2007-10-18 2:10 UTC (permalink / raw)
To: Jon Loeliger; +Cc: linuxppc-dev
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 <david@gibson.dropbear.id.au>
Index: dtc/libfdt/fdt_ro.c
===================================================================
--- dtc.orig/libfdt/fdt_ro.c 2007-10-17 17:35:49.000000000 +1000
+++ dtc/libfdt/fdt_ro.c 2007-10-17 17:35:50.000000000 +1000
@@ -82,7 +82,7 @@ static int nodename_eq(const void *fdt,
return 0;
}
-char *fdt_string(const void *fdt, int stroffset)
+const char *fdt_string(const void *fdt, int stroffset)
{
return (char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
}
Index: dtc/libfdt/libfdt.h
===================================================================
--- dtc.orig/libfdt/libfdt.h 2007-10-17 17:35:35.000000000 +1000
+++ dtc/libfdt/libfdt.h 2007-10-17 17:35:36.000000000 +1000
@@ -110,7 +110,7 @@ static inline void *fdt_offset_ptr_w(voi
int fdt_move(const void *fdt, void *buf, int bufsize);
/* Read-only functions */
-char *fdt_string(const void *fdt, int stroffset);
+const char *fdt_string(const void *fdt, int stroffset);
int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size);
int fdt_num_mem_rsv(const void *fdt);
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: libfdt: Make fdt_string() return a const pointer
2007-10-18 2:10 libfdt: Make fdt_string() return a const pointer David Gibson
@ 2007-10-22 16:37 ` Jon Loeliger
2007-10-23 3:21 ` David Gibson
0 siblings, 1 reply; 4+ messages in thread
From: Jon Loeliger @ 2007-10-22 16:37 UTC (permalink / raw)
To: David Gibson; +Cc: linuxppc-dev
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 Gibson <david@gibson.dropbear.id.au>
Applied.
jdl
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: libfdt: Make fdt_string() return a const pointer
2007-10-22 16:37 ` Jon Loeliger
@ 2007-10-23 3:21 ` David Gibson
2007-10-23 13:54 ` Jon Loeliger
0 siblings, 1 reply; 4+ messages in thread
From: David Gibson @ 2007-10-23 3:21 UTC (permalink / raw)
To: Jon Loeliger; +Cc: linuxppc-dev
On Mon, Oct 22, 2007 at 11:37:43AM -0500, Jon Loeliger wrote:
> 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 Gibson <david@gibson.dropbear.id.au>
>
> Applied.
But apparently not pushed out to the public tree...
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-23 13:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-18 2:10 libfdt: Make fdt_string() return a const pointer David Gibson
2007-10-22 16:37 ` Jon Loeliger
2007-10-23 3:21 ` David Gibson
2007-10-23 13:54 ` Jon Loeliger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).