]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[POWERPC] bootwrapper: Use map_string() instead of lookup_string() in ft_prop().
authorScott Wood <scottwood@freescale.com>
Mon, 12 Mar 2007 20:41:51 +0000 (14:41 -0600)
committerPaul Mackerras <paulus@samba.org>
Tue, 13 Mar 2007 10:15:58 +0000 (21:15 +1100)
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>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/boot/flatdevtree.c

index f2a29ca9ef858dbeff899ed945ef82bcff9d0eb8..e319a6502918e51addd8861fd721f702faa8a257 100644 (file)
@@ -429,7 +429,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;