diff options
author | Matthew McClintock <msm@freescale.com> | 2011-07-18 13:08:05 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-19 10:38:33 +0200 |
commit | 1bb5e9071f7598eb83e2015a2e9dfbdc18a4314d (patch) | |
tree | 59dd2fd846fd474b82aecc3ce538890e6a5c3d49 /common/image.c | |
parent | cdf1a2328a76cc57837d9a6e14a4f11f3a58b2e6 (diff) | |
download | u-boot-1bb5e9071f7598eb83e2015a2e9dfbdc18a4314d.zip u-boot-1bb5e9071f7598eb83e2015a2e9dfbdc18a4314d.tar.gz u-boot-1bb5e9071f7598eb83e2015a2e9dfbdc18a4314d.tar.bz2 |
Fix typo from 'mb_alloc' -> 'lmb_alloc'
Signed-off-by: Matthew McClintock <msm@freescale.com>
Diffstat (limited to 'common/image.c')
-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 c6cd85e..5c7d4f4 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 = |