summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2018-02-19 11:39:39 -0500
committerTom Rini <[email protected]>2018-02-19 11:39:39 -0500
commitd884c58f0c7b997fd7f04e360d86717e75de74b1 (patch)
tree1426af3a541f4900e496ce4f15607da6631b1977 /cmd
parentede52d04825d69a9aca4d048dae89f3b85e8f504 (diff)
parentc6b89f31806df06a5d7b688a65f9d2e6e6119a55 (diff)
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'cmd')
-rw-r--r--cmd/demo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/demo.c b/cmd/demo.c
index 209dc4a57ce..bf14f7b1c53 100644
--- a/cmd/demo.c
+++ b/cmd/demo.c
@@ -71,9 +71,9 @@ int do_demo_list(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
dev;
ret = uclass_next_device(&dev)) {
printf("entry %d - instance %08x, ops %08x, platdata %08x\n",
- i++, map_to_sysmem(dev),
- map_to_sysmem(dev->driver->ops),
- map_to_sysmem(dev_get_platdata(dev)));
+ i++, (uint)map_to_sysmem(dev),
+ (uint)map_to_sysmem(dev->driver->ops),
+ (uint)map_to_sysmem(dev_get_platdata(dev)));
}
return cmd_process_error(cmdtp, ret);