Module Name:    src
Committed By:   jdolecek
Date:           Tue Jan 22 22:22:06 UTC 2019

Modified Files:
        src/sys/dev/pci: ahcisata_pci.c

Log Message:
fix pasto; still PR kern/53307


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 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.53 src/sys/dev/pci/ahcisata_pci.c:1.54
--- src/sys/dev/pci/ahcisata_pci.c:1.53	Tue Jan 22 22:14:20 2019
+++ src/sys/dev/pci/ahcisata_pci.c	Tue Jan 22 22:22:06 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ahcisata_pci.c,v 1.53 2019/01/22 22:14:20 jdolecek Exp $	*/
+/*	$NetBSD: ahcisata_pci.c,v 1.54 2019/01/22 22:22:06 jdolecek Exp $	*/
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.53 2019/01/22 22:14:20 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.54 2019/01/22 22:22:06 jdolecek Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ahcisata_pci.h"
@@ -200,9 +200,9 @@ 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, 82801JI_SATA_AHCI,
+	{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SATA_AHCI,
 	    AHCI_QUIRK_BADPMP },
-	{ PCI_VENDOR_AMD, HUDSON_SATA_AHCI,
+	{ PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON_SATA_AHCI,
 	    AHCI_QUIRK_BADPMP },
 };
 

Reply via email to