PATCH: Fix enable bits for triflex
From: Alan Cox
Date:  Sat Nov 19 2005 - 16:39:39 EST
Same again but for triflex
Signed-off-by: Alan Cox <alan@xxxxxxxxxx>
diff -u --exclude-from /usr/src/exclude --new-file --recursive linux.vanilla-2.6.14-mm2/drivers/scsi/pata_triflex.c linux-2.6.14-mm2/drivers/scsi/pata_triflex.c
--- linux.vanilla-2.6.14-mm2/drivers/scsi/pata_triflex.c	2005-11-19 17:28:03.000000000 +0000
+++ linux-2.6.14-mm2/drivers/scsi/pata_triflex.c	2005-11-19 17:34:45.000000000 +0000
@@ -49,8 +49,8 @@
 {
 	struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
 	static struct pci_bits triflex_enable_bits[] = {
-		{ 0x80, 0x01, 0x01 },
-		{ 0x80, 0x02, 0x02 }
+		{ 0x80, 1, 0x01, 0x01 },
+		{ 0x80, 1, 0x02, 0x02 }
 	};
 
 	if (!pci_test_config_bits(pdev, &triflex_enable_bits[ap->hard_port_no])) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/