diff options
author | Matthew McClintock | 2011-07-18 13:08:05 +0000 |
---|---|---|
committer | Wolfgang Denk | 2011-07-19 10:38:33 +0200 |
commit | 1bb5e9071f7598eb83e2015a2e9dfbdc18a4314d (patch) | |
tree | 59dd2fd846fd474b82aecc3ce538890e6a5c3d49 | |
parent | cdf1a2328a76cc57837d9a6e14a4f11f3a58b2e6 (diff) |
Fix typo from 'mb_alloc' -> 'lmb_alloc'
Signed-off-by: Matthew McClintock <msm@freescale.com>
-rw-r--r-- | common/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image.c b/common/image.c index c6cd85ef913..5c7d4f42f31 100644 --- a/common/image.c +++ b/common/image.c @@ -1274,7 +1274,7 @@ int boot_relocate_fdt (struct lmb *lmb, char **of_flat_tree, ulong *of_size) } } else { of_start = - (void *)(ulong) mb_alloc(lmb, of_len, 0x1000); + (void *)(ulong) lmb_alloc(lmb, of_len, 0x1000); } } else { of_start = |