diff options
| author | Stephan Gerhold <[email protected]> | 2021-07-06 16:54:34 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2021-07-30 17:13:02 +0800 |
| commit | 19e1da0c66454bd6206a4badfdc0077d7fd76aed (patch) | |
| tree | 4e469b6dfa7f791ff7990fb67e087c99e488f824 /drivers | |
| parent | 936e9cd39260559b6c3f931038fe3f2173e43605 (diff) | |
mmc: arm_pl180_mmci: Simplify code using dev_read_addr_ptr()
Simplify the code a bit by using dev_read_addr_ptr() instead of
dev_read_addr(). This avoids having to cast explicitly to void*.
Signed-off-by: Stephan Gerhold <[email protected]>
Reviewed-by: Patrice Chotard <[email protected]>
Tested-by: Patrice Chotard <[email protected]> on stm32f769-disco
Reviewed-by: Jaehoon Chung <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/arm_pl180_mmci.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/mmc/arm_pl180_mmci.c b/drivers/mmc/arm_pl180_mmci.c index 5d1ee64356e..e632eed03fa 100644 --- a/drivers/mmc/arm_pl180_mmci.c +++ b/drivers/mmc/arm_pl180_mmci.c @@ -526,14 +526,11 @@ static const struct dm_mmc_ops arm_pl180_dm_mmc_ops = { static int arm_pl180_mmc_of_to_plat(struct udevice *dev) { struct pl180_mmc_host *host = dev_get_priv(dev); - fdt_addr_t addr; - addr = dev_read_addr(dev); - if (addr == FDT_ADDR_T_NONE) + host->base = dev_read_addr_ptr(dev); + if (!host->base) return -EINVAL; - host->base = (void *)addr; - return 0; } |
