diff options
author | Andre Przywara <andre.przywara@arm.com> | 2017-01-02 11:48:31 +0000 |
---|---|---|
committer | Jagan Teki <jagan@openedev.com> | 2017-01-04 16:37:41 +0100 |
commit | 11e1479b9e672661fcc2ea69f7e9cbaa6f07ecf5 (patch) | |
tree | e617708dcc4641d4556f842f4ff3df9ac94314ed /common/spl/spl_mmc.c | |
parent | 2a6713b09b8da58572338abac276aa764bb6eadd (diff) | |
download | u-boot-11e1479b9e672661fcc2ea69f7e9cbaa6f07ecf5.tar.gz u-boot-11e1479b9e672661fcc2ea69f7e9cbaa6f07ecf5.tar.xz u-boot-11e1479b9e672661fcc2ea69f7e9cbaa6f07ecf5.zip |
SPL: make struct spl_image 64-bit safe
Since entry_point and load_addr are addresses, they should be
represented as longs to cover the whole address space and to avoid
warning when compiling the SPL in 64-bit.
Also adjust debug prints to add the 'l' specifier, where needed.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>
Diffstat (limited to 'common/spl/spl_mmc.c')
-rw-r--r-- | common/spl/spl_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index 85e3de8f23..0cd355cd46 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -36,7 +36,7 @@ static int mmc_load_legacy(struct spl_image_info *spl_image, struct mmc *mmc, /* Read the header too to avoid extra memcpy */ count = blk_dread(mmc_get_blk_desc(mmc), sector, image_size_sectors, (void *)(ulong)spl_image->load_addr); - debug("read %x sectors to %x\n", image_size_sectors, + debug("read %x sectors to %lx\n", image_size_sectors, spl_image->load_addr); if (count != image_size_sectors) return -EIO; |