diff options
author | Becky Bruce <becky.bruce@freescale.com> | 2008-06-09 20:37:18 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-06-12 00:56:39 +0200 |
commit | 391fd93ab23e15ab3dd58a54f5b609024009c378 (patch) | |
tree | cbecdac5275d3ee048a0f0402042437b60e816d6 /common/cmd_bootm.c | |
parent | 61b09fc2952dc636017df4e7970e3de132276ba1 (diff) | |
download | u-boot-imx-391fd93ab23e15ab3dd58a54f5b609024009c378.zip u-boot-imx-391fd93ab23e15ab3dd58a54f5b609024009c378.tar.gz u-boot-imx-391fd93ab23e15ab3dd58a54f5b609024009c378.tar.bz2 |
Change lmb to use phys_size_t/phys_addr_t
This updates the lmb code to use phys_size_t
and phys_addr_t instead of unsigned long. Other code
which interacts with this code, like getenv_bootm_size()
is also updated.
Booted on MPC8641HPCN, build-tested ppc, arm, mips.
Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r-- | common/cmd_bootm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 0d67132..959689e 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -127,7 +127,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ulong os_data, os_len; ulong image_start, image_end; ulong load_start, load_end; - ulong mem_start, mem_size; + ulong mem_start; + phys_size_t mem_size; struct lmb lmb; @@ -141,7 +142,7 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) mem_start = getenv_bootm_low(); mem_size = getenv_bootm_size(); - lmb_add(&lmb, mem_start, mem_size); + lmb_add(&lmb, (phys_addr_t)mem_start, mem_size); board_lmb_reserve(&lmb); |