Commit f158809e authored by Jeff Garzik's avatar Jeff Garzik Committed by Linus Torvalds

[PATCH] SATA: fix and enable sata-sil

sata_sil:  it's a widely deployed chipset.  Now that we've fixed it, let
users use it.

sata_via:  Disk detection via SATA phy registers appear problematic. 
Until that problem is identified and fixed, used the old PATA detection 
code -- that was used in 2.6.4 -- instead.
parent 1aeaeab3
...@@ -443,7 +443,7 @@ config SCSI_SATA_PROMISE ...@@ -443,7 +443,7 @@ config SCSI_SATA_PROMISE
config SCSI_SATA_SIL config SCSI_SATA_SIL
tristate "Silicon Image SATA support" tristate "Silicon Image SATA support"
depends on SCSI_SATA && PCI && BROKEN depends on SCSI_SATA && PCI && EXPERIMENTAL
help help
This option enables support for Silicon Image Serial ATA. This option enables support for Silicon Image Serial ATA.
......
...@@ -205,7 +205,7 @@ static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -205,7 +205,7 @@ static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
INIT_LIST_HEAD(&probe_ent->node); INIT_LIST_HEAD(&probe_ent->node);
probe_ent->pdev = pdev; probe_ent->pdev = pdev;
probe_ent->sht = &svia_sht; probe_ent->sht = &svia_sht;
probe_ent->host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET | probe_ent->host_flags = ATA_FLAG_SATA | ATA_FLAG_SRST |
ATA_FLAG_NO_LEGACY; ATA_FLAG_NO_LEGACY;
probe_ent->port_ops = &svia_sata_ops; probe_ent->port_ops = &svia_sata_ops;
probe_ent->n_ports = 2; probe_ent->n_ports = 2;
......
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