From a53e5a78d766e49fc0d79c10ebe2341a615560b1 Mon Sep 17 00:00:00 2001 From: Skrilax_CZ Date: Wed, 10 Jun 2020 13:50:08 -0700 Subject: Disable NCQ for ASMedia --- drivers/ata/ahci.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 5408a292..65a1e157 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -549,10 +549,10 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(PROMISE, 0x3781), board_ahci }, /* FastTrak TX8660 ahci-mode */ /* Asmedia */ - { PCI_VDEVICE(ASMEDIA, 0x0601), board_ahci }, /* ASM1060 */ - { PCI_VDEVICE(ASMEDIA, 0x0602), board_ahci }, /* ASM1060 */ - { PCI_VDEVICE(ASMEDIA, 0x0611), board_ahci }, /* ASM1061 */ - { PCI_VDEVICE(ASMEDIA, 0x0612), board_ahci }, /* ASM1062 */ + { PCI_VDEVICE(ASMEDIA, 0x0601), board_ahci_noncq }, /* ASM1060 */ + { PCI_VDEVICE(ASMEDIA, 0x0602), board_ahci_noncq }, /* ASM1060 */ + { PCI_VDEVICE(ASMEDIA, 0x0611), board_ahci_noncq }, /* ASM1061 */ + { PCI_VDEVICE(ASMEDIA, 0x0612), board_ahci_noncq }, /* ASM1062 */ /* * Samsung SSDs found on some macbooks. NCQ times out if MSI is -- 2.20.1