svn commit: r273725 - in stable/10/sys/dev/ata: . chipsets
Alexander Motin
mav at FreeBSD.org
Mon Oct 27 07:20:40 UTC 2014
Author: mav
Date: Mon Oct 27 07:20:39 2014
New Revision: 273725
URL: https://svnweb.freebsd.org/changeset/base/273725
Log:
MFC r273328: Add another PCI ID for JMB368 PATA controller.
Modified:
stable/10/sys/dev/ata/ata-pci.h
stable/10/sys/dev/ata/chipsets/ata-jmicron.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/ata/ata-pci.h
==============================================================================
--- stable/10/sys/dev/ata/ata-pci.h Mon Oct 27 06:14:13 2014 (r273724)
+++ stable/10/sys/dev/ata/ata-pci.h Mon Oct 27 07:20:39 2014 (r273725)
@@ -306,6 +306,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/10/sys/dev/ata/chipsets/ata-jmicron.c
==============================================================================
--- stable/10/sys/dev/ata/chipsets/ata-jmicron.c Mon Oct 27 06:14:13 2014 (r273724)
+++ stable/10/sys/dev/ata/chipsets/ata-jmicron.c Mon Oct 27 07:20:39 2014 (r273725)
@@ -71,6 +71,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