From: Bin Meng Date: Thu, 3 Aug 2017 02:07:17 +0000 (-0700) Subject: ahci-pci: Update call to ahci_probe_scsi_pci() X-Git-Tag: v2017.09-rc2~132 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7b9c88bfca6b445e26767494a30083d3b75b5b67;p=oweals%2Fu-boot.git 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 --- diff --git a/drivers/ata/ahci-pci.c b/drivers/ata/ahci-pci.c index f46fad899e..5a45edc4e4 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[] = {