#include <linux/of.h>
 #include <linux/of_net.h>
 #include <linux/relay.h>
+#include <linux/dmi.h>
 #include <net/ieee80211_radiotap.h>
 
 #include "ath9k.h"
 };
 #endif
 
+static int __init set_use_msi(const struct dmi_system_id *dmi)
+{
+       ath9k_use_msi = 1;
+       return 1;
+}
+
+static const struct dmi_system_id ath9k_quirks[] __initconst = {
+       {
+               .callback = set_use_msi,
+               .ident = "Dell Inspiron 24-3460",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 24-3460"),
+               },
+       },
+       {
+               .callback = set_use_msi,
+               .ident = "Dell Vostro 3262",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3262"),
+               },
+       },
+       {
+               .callback = set_use_msi,
+               .ident = "Dell Inspiron 3472",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 3472"),
+               },
+       },
+       {
+               .callback = set_use_msi,
+               .ident = "Dell Vostro 15-3572",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 15-3572"),
+               },
+       },
+       {
+               .callback = set_use_msi,
+               .ident = "Dell Inspiron 14-3473",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 14-3473"),
+               },
+       },
+       {}
+};
+
 static void ath9k_deinit_softc(struct ath_softc *sc);
 
 static void ath9k_op_ps_wakeup(struct ath_common *common)
                goto err_pci_exit;
        }
 
+       dmi_check_system(ath9k_quirks);
+
        return 0;
 
  err_pci_exit: