svn commit: r273726 - in stable/9/sys/dev/ata: . chipsets

Alexander Motin mav at FreeBSD.org
Mon Oct 27 07:21:38 UTC 2014


Author: mav
Date: Mon Oct 27 07:21:37 2014
New Revision: 273726
URL: https://svnweb.freebsd.org/changeset/base/273726

Log:
  MFC r273328: Add another PCI ID for JMB368 PATA controller.

Modified:
  stable/9/sys/dev/ata/ata-pci.h
  stable/9/sys/dev/ata/chipsets/ata-jmicron.c
Directory Properties:
  stable/9/   (props changed)
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/ata/ata-pci.h
==============================================================================
--- stable/9/sys/dev/ata/ata-pci.h	Mon Oct 27 07:20:39 2014	(r273725)
+++ stable/9/sys/dev/ata/ata-pci.h	Mon Oct 27 07:21:37 2014	(r273726)
@@ -309,6 +309,7 @@ struct ata_pci_controller {
 #define ATA_JMB365              0x2365197b
 #define ATA_JMB366              0x2366197b
 #define ATA_JMB368              0x2368197b
+#define ATA_JMB368_2            0x0368197b
 
 #define ATA_MARVELL_ID          0x11ab
 #define ATA_M88SX5040           0x504011ab

Modified: stable/9/sys/dev/ata/chipsets/ata-jmicron.c
==============================================================================
--- stable/9/sys/dev/ata/chipsets/ata-jmicron.c	Mon Oct 27 07:20:39 2014	(r273725)
+++ stable/9/sys/dev/ata/chipsets/ata-jmicron.c	Mon Oct 27 07:21:37 2014	(r273726)
@@ -72,6 +72,7 @@ ata_jmicron_probe(device_t dev)
      { ATA_JMB365, 0, 1, 2, ATA_UDMA6, "JMB365" },
      { ATA_JMB366, 0, 2, 2, ATA_UDMA6, "JMB366" },
      { ATA_JMB368, 0, 0, 1, ATA_UDMA6, "JMB368" },
+     { ATA_JMB368_2, 0, 0, 1, ATA_UDMA6, "JMB368" },
      { 0, 0, 0, 0, 0, 0}};
     char buffer[64];
 


More information about the svn-src-all mailing list