From 7b9c88bfca6b445e26767494a30083d3b75b5b67 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 2 Aug 2017 19:07:17 -0700 Subject: [PATCH] ahci-pci: Update call to ahci_probe_scsi_pci() ahci_probe_scsi() now takes a 'base' argument, and there is an API that prepares base address for us: ahci_probe_scsi_pci(). Reported-by: Tom Rini Reviewed-by: Simon Glass Signed-off-by: Bin Meng --- drivers/ata/ahci-pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/ahci-pci.c b/drivers/ata/ahci-pci.c index f46fad8..5a45edc 100644 --- a/drivers/ata/ahci-pci.c +++ b/drivers/ata/ahci-pci.c @@ -18,7 +18,7 @@ static int ahci_pci_bind(struct udevice *dev) static int ahci_pci_probe(struct udevice *dev) { - return ahci_probe_scsi(dev); + return ahci_probe_scsi_pci(dev); } static const struct udevice_id ahci_pci_ids[] = {