diff options
| author | Kever Yang <[email protected]> | 2017-09-07 11:20:50 +0800 |
|---|---|---|
| committer | Philipp Tomsich <[email protected]> | 2017-09-18 20:40:38 +0200 |
| commit | 5184daddaa9a398ac7f47b5a28e7264f7eb10bed (patch) | |
| tree | 28ae2a69b49dd87727ad49303525ba2aa850b7e8 /drivers | |
| parent | 75ff0578515665a1b712275deb73be29e5ad8773 (diff) | |
rockchip: sdhci: update reg map for of-platdata
After Simon's patch, the dtoc can work with 64bit address,
so we need to fix reg number for it.
Depend on Simon's patch set:
https://patchwork.ozlabs.org/cover/807266/
Signed-off-by: Kever Yang <[email protected]>
Acked-by: Philipp Tomsich <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/rockchip_sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/rockchip_sdhci.c b/drivers/mmc/rockchip_sdhci.c index 346a42c664a..0f31dfc3fd1 100644 --- a/drivers/mmc/rockchip_sdhci.c +++ b/drivers/mmc/rockchip_sdhci.c @@ -45,7 +45,7 @@ static int arasan_sdhci_probe(struct udevice *dev) struct dtd_rockchip_rk3399_sdhci_5_1 *dtplat = &plat->dtplat; host->name = dev->name; - host->ioaddr = map_sysmem(dtplat->reg[1], dtplat->reg[3]); + host->ioaddr = map_sysmem(dtplat->reg[0], dtplat->reg[1]); max_frequency = dtplat->max_frequency; ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &clk); #else |
