diff options
Diffstat (limited to 'drivers/demo/demo-simple.c')
-rw-r--r-- | drivers/demo/demo-simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/demo/demo-simple.c b/drivers/demo/demo-simple.c index f069748e05..d05b1dfd87 100644 --- a/drivers/demo/demo-simple.c +++ b/drivers/demo/demo-simple.c @@ -17,7 +17,7 @@ static int simple_hello(struct udevice *dev, int ch) { const struct dm_demo_pdata *pdata = dev_get_platdata(dev); - printf("Hello from %08x: %s %d\n", map_to_sysmem(dev), pdata->colour, + printf("Hello from %08x: %s %d\n", (uint)map_to_sysmem(dev), pdata->colour, pdata->sides); return 0; |