diff options
-rw-r--r-- | drivers/ata/ahci.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index fd318ac36432..389f670ee7c6 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -753,6 +753,18 @@ static bool ahci_sb600_enable_64bit(struct pci_dev *pdev) | |||
753 | DMI_MATCH(DMI_BOARD_NAME, "MS-7376"), | 753 | DMI_MATCH(DMI_BOARD_NAME, "MS-7376"), |
754 | }, | 754 | }, |
755 | }, | 755 | }, |
756 | /* | ||
757 | * All BIOS versions for the Asus M3A support 64bit DMA. | ||
758 | * (all release versions from 0301 to 1206 were tested) | ||
759 | */ | ||
760 | { | ||
761 | .ident = "ASUS M3A", | ||
762 | .matches = { | ||
763 | DMI_MATCH(DMI_BOARD_VENDOR, | ||
764 | "ASUSTeK Computer INC."), | ||
765 | DMI_MATCH(DMI_BOARD_NAME, "M3A"), | ||
766 | }, | ||
767 | }, | ||
756 | { } | 768 | { } |
757 | }; | 769 | }; |
758 | const struct dmi_system_id *match; | 770 | const struct dmi_system_id *match; |