* [PATCH 09/19] bootwrapper: Use map_string() instead of lookup_string() in ft_prop().
@ 2007-03-12 20:41 Scott Wood
2007-03-13 1:44 ` David Gibson
0 siblings, 1 reply; 2+ messages in thread
From: Scott Wood @ 2007-03-12 20:41 UTC (permalink / raw)
To: paulus; +Cc: linuxppc-dev
When adding a property, the property name should be added to the string
table if it doesn't already exist. map_string() does that;
lookup_string() will fail instead.
Signed-off-by: Scott Wood <scottwood@freescale.com>
---
arch/powerpc/boot/flatdevtree.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/powerpc/boot/flatdevtree.c b/arch/powerpc/boot/flatdevtree.c
index 0c8970e..605d248 100644
--- a/arch/powerpc/boot/flatdevtree.c
+++ b/arch/powerpc/boot/flatdevtree.c
@@ -433,7 +433,7 @@ int ft_prop(struct ft_cxt *cxt, const char *name, const void *data,
{
int off, len;
- off = lookup_string(cxt, name);
+ off = map_string(cxt, name);
if (off == NO_STRING)
return -1;
--
1.5.0.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-03-13 1:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-12 20:41 [PATCH 09/19] bootwrapper: Use map_string() instead of lookup_string() in ft_prop() Scott Wood
2007-03-13 1:44 ` David Gibson
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).