mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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 <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
a89302cc79
commit
7b9c88bfca
1 changed files with 1 additions and 1 deletions
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in a new issue