diff options
| author | Bin Meng <[email protected]> | 2017-08-02 19:07:17 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-08-03 14:48:48 -0400 |
| commit | 7b9c88bfca6b445e26767494a30083d3b75b5b67 (patch) | |
| tree | 5fba2a3916b5721c9b2c42759249af3a6dd2f2ed /drivers | |
| parent | a89302cc7908de36e949b02013ac05ce5ef8b354 (diff) | |
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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Bin Meng <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/ata/ahci-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci-pci.c b/drivers/ata/ahci-pci.c index f46fad899e5..5a45edc4e41 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[] = { |
