diff options
author | Simon Glass <sjg@chromium.org> | 2017-07-04 13:31:18 -0600 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-08-01 11:58:00 +0900 |
commit | 745a94f352b8f6f05e038110d3ce44d211bf31f3 (patch) | |
tree | d3ee7124f1931eaa0267b3e7f371d6f705816ade /arch/x86 | |
parent | 6364a5d4bd55beeedc11171419acd0bdff17a599 (diff) | |
download | u-boot-745a94f352b8f6f05e038110d3ce44d211bf31f3.tar.gz u-boot-745a94f352b8f6f05e038110d3ce44d211bf31f3.tar.xz u-boot-745a94f352b8f6f05e038110d3ce44d211bf31f3.zip |
ahci: Support non-PCI controllers
At present the AHCI SCSI driver only supports PCI with driver model.
Rename the existing function to indicate this and add support for adding
a non-PCI controller .
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/cpu/ivybridge/sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/ivybridge/sata.c b/arch/x86/cpu/ivybridge/sata.c index 462b7c09dd..7febb8cf88 100644 --- a/arch/x86/cpu/ivybridge/sata.c +++ b/arch/x86/cpu/ivybridge/sata.c @@ -236,7 +236,7 @@ static int bd82x6x_sata_probe(struct udevice *dev) bd82x6x_sata_enable(dev); else { bd82x6x_sata_init(dev, pch); - ret = ahci_probe_scsi(dev); + ret = ahci_probe_scsi_pci(dev); if (ret) return ret; } |