diff --git a/[refs] b/[refs] index 03f2774642ca..dfc3b4297682 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4f2d47cfddc84969b6934893fc40132750ae3b5e +refs/heads/master: 9edbdbea003b8be96e2f5d70515227d5fb32ad72 diff --git a/trunk/drivers/ata/pata_via.c b/trunk/drivers/ata/pata_via.c index f645fe22cd1e..ea18e33f50ef 100644 --- a/trunk/drivers/ata/pata_via.c +++ b/trunk/drivers/ata/pata_via.c @@ -63,7 +63,7 @@ #include #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 @@ -144,6 +144,9 @@ static int via_cable_override(struct pci_dev *pdev) /* Systems by DMI */ if (dmi_check_system(cable_dmi_table)) return 1; + /* Arima W730-K8/Targa Visionary 811/... */ + if (pdev->subsystem_vendor == 0x161F && pdev->subsystem_device == 0x2032) + return 1; return 0; }