Module Name: src Committed By: rin Date: Mon Nov 8 11:01:52 UTC 2021
Modified Files: src/sys/dev/pci: ahcisata_pci.c Log Message: Group quirks by vendors. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/sys/dev/pci/ahcisata_pci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/ahcisata_pci.c diff -u src/sys/dev/pci/ahcisata_pci.c:1.58 src/sys/dev/pci/ahcisata_pci.c:1.59 --- src/sys/dev/pci/ahcisata_pci.c:1.58 Mon Dec 28 20:01:46 2020 +++ src/sys/dev/pci/ahcisata_pci.c Mon Nov 8 11:01:51 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ahcisata_pci.c,v 1.58 2020/12/28 20:01:46 jmcneill Exp $ */ +/* $NetBSD: ahcisata_pci.c,v 1.59 2021/11/08 11:01:51 rin Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.58 2020/12/28 20:01:46 jmcneill Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.59 2021/11/08 11:01:51 rin Exp $"); #ifdef _KERNEL_OPT #include "opt_ahcisata_pci.h" @@ -200,10 +200,10 @@ static const struct ahci_pci_quirk ahci_ AHCI_PCI_QUIRK_FORCE }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON_SATA, AHCI_PCI_QUIRK_FORCE }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SATA_AHCI, - AHCI_QUIRK_BADPMP }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON_SATA_AHCI, AHCI_QUIRK_BADPMP }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SATA_AHCI, + AHCI_QUIRK_BADPMP }, }; struct ahci_pci_softc {