mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
rockchip: timer: update for 32/64bit-aware OF_PLATDATA
With dtoc emitting fdt64_t for addresses (and region sizes), the array indices for accessing the reg[] array needs to be adjusted. This adjusts the Rockchip DM timer driver to correctly handle OF_PLATDATA given this new structure layout. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7b87e3bfaf
commit
8158a848fa
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ static int rockchip_timer_probe(struct udevice *dev)
|
|||
struct rockchip_timer_priv *priv = dev_get_priv(dev);
|
||||
struct rockchip_timer_plat *plat = dev_get_platdata(dev);
|
||||
|
||||
priv->timer = map_sysmem(plat->dtd.reg[1], plat->dtd.reg[3]);
|
||||
priv->timer = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]);
|
||||
uc_priv->clock_rate = plat->dtd.clock_frequency;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue