pata_hpt3x3: fix DMA Kconfig option to actually have a hope of working
The hook that set DMA mode was accidentally deleted in the original patch. Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
2f8d90ab79
commit
790956e7bb
1 changed files with 5 additions and 0 deletions
|
@ -52,6 +52,7 @@ static void hpt3x3_set_piomode(struct ata_port *ap, struct ata_device *adev)
|
||||||
pci_write_config_dword(pdev, 0x48, r2);
|
pci_write_config_dword(pdev, 0x48, r2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(CONFIG_PATA_HPT3X3_DMA)
|
||||||
/**
|
/**
|
||||||
* hpt3x3_set_dmamode - DMA timing setup
|
* hpt3x3_set_dmamode - DMA timing setup
|
||||||
* @ap: ATA interface
|
* @ap: ATA interface
|
||||||
|
@ -86,6 +87,7 @@ static void hpt3x3_set_dmamode(struct ata_port *ap, struct ata_device *adev)
|
||||||
pci_write_config_dword(pdev, 0x44, r1);
|
pci_write_config_dword(pdev, 0x44, r1);
|
||||||
pci_write_config_dword(pdev, 0x48, r2);
|
pci_write_config_dword(pdev, 0x48, r2);
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_PATA_HPT3X3_DMA */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hpt3x3_atapi_dma - ATAPI DMA check
|
* hpt3x3_atapi_dma - ATAPI DMA check
|
||||||
|
@ -120,6 +122,9 @@ static struct scsi_host_template hpt3x3_sht = {
|
||||||
static struct ata_port_operations hpt3x3_port_ops = {
|
static struct ata_port_operations hpt3x3_port_ops = {
|
||||||
.port_disable = ata_port_disable,
|
.port_disable = ata_port_disable,
|
||||||
.set_piomode = hpt3x3_set_piomode,
|
.set_piomode = hpt3x3_set_piomode,
|
||||||
|
#if defined(CONFIG_PATA_HPT3X3_DMA)
|
||||||
|
.set_dmamode = hpt3x3_set_dmamode,
|
||||||
|
#endif
|
||||||
.mode_filter = ata_pci_default_filter,
|
.mode_filter = ata_pci_default_filter,
|
||||||
|
|
||||||
.tf_load = ata_tf_load,
|
.tf_load = ata_tf_load,
|
||||||
|
|
Loading…
Reference in a new issue