ddr: fsl: Impl. Erratum A008109
[oweals/u-boot.git] / drivers / ata / ahci-pci.c
index f46fad899e5a201236682cdb4ba6bf51bc727aa7..11ec98b56f9bd479d6872be25d77dac194c9c0bc 100644 (file)
@@ -1,7 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -18,7 +17,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[] = {
@@ -36,6 +35,7 @@ U_BOOT_DRIVER(ahci_pci) = {
 
 static struct pci_device_id ahci_pci_supported[] = {
        { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, ~0) },
+       { PCI_DEVICE(0x1b21, 0x0611) },
        {},
 };