diff options
author | Alan Cox <alan@linux.intel.com> | 2010-02-17 16:17:44 +0300 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2010-03-01 23:07:01 +0300 |
commit | 1d3a8118b049252a84641b6643066bda0da0d316 (patch) | |
tree | 3ef27e5c9c151896f1b6a54aea4d55589578e8c8 /drivers/ata/pata_atiixp.c | |
parent | e99846f18f03badd1bbd4fda79e6ec325e3b9058 (diff) | |
download | linux-1d3a8118b049252a84641b6643066bda0da0d316.tar.xz |
pata_atiixp: enable parallel scan
This was originally proposed by Bartlomiej but as a device specific
expansion of the init_one function rather than making the helper more
generic.
Enable the parallel scan via the generic flags.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/pata_atiixp.c')
-rw-r--r-- | drivers/ata/pata_atiixp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ata/pata_atiixp.c b/drivers/ata/pata_atiixp.c index 9ad3b4ce1ca5..cbaf2eddac6b 100644 --- a/drivers/ata/pata_atiixp.c +++ b/drivers/ata/pata_atiixp.c @@ -246,7 +246,8 @@ static int atiixp_init_one(struct pci_dev *pdev, const struct pci_device_id *id) if (!pci_test_config_bits(pdev, &atiixp_enable_bits[i])) ppi[i] = &ata_dummy_port_info; - return ata_pci_sff_init_one(pdev, ppi, &atiixp_sht, NULL, 0); + return ata_pci_sff_init_one(pdev, ppi, &atiixp_sht, NULL, + ATA_HOST_PARALLEL_SCAN); } static const struct pci_device_id atiixp[] = { |