Skip to content
Snippets Groups Projects
Commit 871ca263 authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tom Rini
Browse files

dm: omap_timer: Fix conversion of address to a pointer


OMAP timer driver directly typecasts fdt_addr_t to a pointer. This is
not strictly correct, as it gives a build warning when fdt_addr_t is u64.
So, use map_physmem for a proper typecasts.

This is inspired by commit 167efe01 ("dm: ns16550: Use an address
instead of a pointer for the uart base")

Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent 8efc2437
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,8 @@ static int omap_timer_ofdata_to_platdata(struct udevice *dev) ...@@ -79,7 +79,8 @@ static int omap_timer_ofdata_to_platdata(struct udevice *dev)
{ {
struct omap_timer_priv *priv = dev_get_priv(dev); struct omap_timer_priv *priv = dev_get_priv(dev);
priv->regs = (struct omap_gptimer_regs *)dev_get_addr(dev); priv->regs = map_physmem(dev_get_addr(dev),
sizeof(struct omap_gptimer_regs), MAP_NOCACHE);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment