summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorrin <rin@NetBSD.org>2021-11-08 11:01:51 +0000
committerrin <rin@NetBSD.org>2021-11-08 11:01:51 +0000
commitfbe4d79d3d6c08558ed6254a08aea9b397f5e22c (patch)
treeeb49ee8dd166db27939d0303adc80df0c324e85f /sys/dev
parent6f1c027ddc4300a80c9b388793536d722b50766c (diff)
Group quirks by vendors. No functional changes.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/ahcisata_pci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/ahcisata_pci.c b/sys/dev/pci/ahcisata_pci.c
index a605fd7a63e..fd726e5b259 100644
--- a/sys/dev/pci/ahcisata_pci.c
+++ b/sys/dev/pci/ahcisata_pci.c
@@ -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_pci_quirks[] = {
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 {