diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-08-04 14:14:42 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-08-22 08:51:44 -0600 |
commit | 1450bff3e4719d1b34189bf62ad19d0e3c10a548 (patch) | |
tree | 712e60fbf05dc3824493374939eff46176f58189 /drivers/ata/ahci_mvebu.c | |
parent | 0cbf3e08fc735b54e7918138e73b34870a213333 (diff) | |
download | u-boot-1450bff3e4719d1b34189bf62ad19d0e3c10a548.tar.gz |
ata: mvebu: use dev_read_addr() to get base address
It is strange to use devfdt_get_addr_ptr(), then cast the pointer
back to ulong because you could use devfdt_get_addr() without casting.
Convert it to dev_read_addr(), which is capable to CONFIG_OF_LIVE.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/ata/ahci_mvebu.c')
-rw-r--r-- | drivers/ata/ahci_mvebu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci_mvebu.c b/drivers/ata/ahci_mvebu.c index 8be1826d40..7d82d2ea3f 100644 --- a/drivers/ata/ahci_mvebu.c +++ b/drivers/ata/ahci_mvebu.c @@ -39,7 +39,7 @@ static int mvebu_ahci_probe(struct udevice *dev) */ board_ahci_enable(); - ahci_probe_scsi(dev, (ulong)devfdt_get_addr_ptr(dev)); + ahci_probe_scsi(dev, dev_read_addr(dev)); return 0; } |