aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2007-03-12 16:41:48 -0400
committerPaul Mackerras <paulus@samba.org>2007-03-13 06:15:55 -0400
commit9dd2c31ab89a12571db89648bcc9992cf71b63d8 (patch)
treeabb5ef017f11fc22296dc958b5bf119293247427 /arch
parent78438b36011d8ef7d28ef63a30b11801be1eea71 (diff)
[POWERPC] bootwrapper: Modify *pp, not *p, in ft_shuffle().
Move the caller's pointer back to match the change in the region's start, rather than alter a byte of the device tree's content. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/boot/flatdevtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/flatdevtree.c b/arch/powerpc/boot/flatdevtree.c
index 0fa4f98fe647..f2a29ca9ef85 100644
--- a/arch/powerpc/boot/flatdevtree.c
+++ b/arch/powerpc/boot/flatdevtree.c
@@ -246,7 +246,7 @@ static int ft_shuffle(struct ft_cxt *cxt, char **pp, enum ft_rgn_id rgn,
246 if (rgn == FT_STRUCT) 246 if (rgn == FT_STRUCT)
247 ft_node_update_before(cxt, p, -nextra); 247 ft_node_update_before(cxt, p, -nextra);
248 } 248 }
249 *p -= nextra; 249 *pp -= nextra;
250 cxt->rgn[rgn].start -= nextra; 250 cxt->rgn[rgn].start -= nextra;
251 cxt->rgn[rgn].size += nextra; 251 cxt->rgn[rgn].size += nextra;
252 return 1; 252 return 1;