mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
altera_timer: change ioremap to map_physmem
Change ioremap() to map_physmem(), as it is more used in u-boot. Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
1ec60b9321
commit
4c26ec17cf
1 changed files with 3 additions and 2 deletions
|
@ -75,8 +75,9 @@ static int altera_timer_ofdata_to_platdata(struct udevice *dev)
|
||||||
{
|
{
|
||||||
struct altera_timer_platdata *plat = dev_get_platdata(dev);
|
struct altera_timer_platdata *plat = dev_get_platdata(dev);
|
||||||
|
|
||||||
plat->regs = ioremap(dev_get_addr(dev),
|
plat->regs = map_physmem(dev_get_addr(dev),
|
||||||
sizeof(struct altera_timer_regs));
|
sizeof(struct altera_timer_regs),
|
||||||
|
MAP_NOCACHE);
|
||||||
plat->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
plat->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
||||||
"clock-frequency", 0);
|
"clock-frequency", 0);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue