summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorYork Sun <york.sun@nxp.com>2017-08-15 11:14:42 -0700
committerJason Liu <jason.hui.liu@nxp.com>2017-11-03 02:37:23 +0800
commit5a5ed5d2041d894fcdfe7f4a24a94b84367e0d33 (patch)
treebc81d1642f846b195edb0dc0efbd6b3bf0289dcb /cmd
parenteda04b31e079a2eaf9e55830641f144301f80f12 (diff)
cmd: spl: Fix compiling warning
Fix warning "cast from pointer to integer of different size". Signed-off-by: York Sun <york.sun@nxp.com> Reviewed-by: Tom Rini <trini@konsulko.com> (cherry picked from commit d1f2ee7021dc4a89f43e25f289747a27da0e930f)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/spl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/spl.c b/cmd/spl.c
index 057764aa8d..562140a393 100644
--- a/cmd/spl.c
+++ b/cmd/spl.c
@@ -108,12 +108,12 @@ static int spl_export(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
c = find_cmd_tbl(argv[1], &cmd_spl_export_sub[0],
ARRAY_SIZE(cmd_spl_export_sub));
- if ((c) && ((int)c->cmd <= SPL_EXPORT_LAST)) {
+ if ((c) && ((long)c->cmd <= SPL_EXPORT_LAST)) {
argc -= 2;
argv += 2;
- if (call_bootm(argc, argv, subcmd_list[(int)c->cmd]))
+ if (call_bootm(argc, argv, subcmd_list[(long)c->cmd]))
return -1;
- switch ((int)c->cmd) {
+ switch ((long)c->cmd) {
#ifdef CONFIG_OF_LIBFDT
case SPL_EXPORT_FDT:
printf("Argument image is now in RAM: 0x%p\n",
@@ -147,7 +147,7 @@ static int do_spl(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
c = find_cmd_tbl(argv[1], &cmd_spl_sub[0], ARRAY_SIZE(cmd_spl_sub));
if (c) {
- cmd = (int)c->cmd;
+ cmd = (long)c->cmd;
switch (cmd) {
case SPL_EXPORT:
argc--;