Commit 9edbdbea authored by Alan Cox's avatar Alan Cox Committed by Jeff Garzik

pata_via: Add Arima W730-K8 and other rebadgings

More cable funnies
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Tested-by: default avatarMikael Pettersson <mikpe@it.uu.se>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 4f2d47cf
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#include <linux/dmi.h> #include <linux/dmi.h>
#define DRV_NAME "pata_via" #define DRV_NAME "pata_via"
#define DRV_VERSION "0.3.1" #define DRV_VERSION "0.3.2"
/* /*
* The following comes directly from Vojtech Pavlik's ide/pci/via82cxxx * The following comes directly from Vojtech Pavlik's ide/pci/via82cxxx
...@@ -144,6 +144,9 @@ static int via_cable_override(struct pci_dev *pdev) ...@@ -144,6 +144,9 @@ static int via_cable_override(struct pci_dev *pdev)
/* Systems by DMI */ /* Systems by DMI */
if (dmi_check_system(cable_dmi_table)) if (dmi_check_system(cable_dmi_table))
return 1; return 1;
/* Arima W730-K8/Targa Visionary 811/... */
if (pdev->subsystem_vendor == 0x161F && pdev->subsystem_device == 0x2032)
return 1;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment