Skip to content

Commit

Permalink
pata_via: Add Arima W730-K8 and other rebadgings
Browse files Browse the repository at this point in the history
More cable funnies

Signed-off-by: Alan Cox <alan@redhat.com>
Tested-by: Mikael Pettersson <mikpe@it.uu.se>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Alan Cox authored and Jeff Garzik committed Aug 23, 2007
1 parent 4f2d47c commit 9edbdbe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/ata/pata_via.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#include <linux/dmi.h>

#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
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 9edbdbe

Please sign in to comment.