aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ata/ahci.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index ebaf67e4b2bc..20da1bcfebb9 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -777,6 +777,22 @@ static bool ahci_sb600_enable_64bit(struct pci_dev *pdev)
777 }, 777 },
778 }, 778 },
779 /* 779 /*
780 * All BIOS versions for the MSI K9AGM2 (MS-7327) support
781 * 64bit DMA.
782 *
783 * This board also had the typo mentioned above in the
784 * Manufacturer DMI field (fixed in BIOS version 1.5), so
785 * match on DMI_BOARD_VENDOR of "MICRO-STAR INTER" again.
786 */
787 {
788 .ident = "MSI K9AGM2",
789 .matches = {
790 DMI_MATCH(DMI_BOARD_VENDOR,
791 "MICRO-STAR INTER"),
792 DMI_MATCH(DMI_BOARD_NAME, "MS-7327"),
793 },
794 },
795 /*
780 * All BIOS versions for the Asus M3A support 64bit DMA. 796 * All BIOS versions for the Asus M3A support 64bit DMA.
781 * (all release versions from 0301 to 1206 were tested) 797 * (all release versions from 0301 to 1206 were tested)
782 */ 798 */