diff options
author | Tejun Heo <htejun@gmail.com> | 2006-11-28 22:10:46 -0500 |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-12-03 03:56:22 -0500 |
commit | c972b60bf167a3d2c3da23df2af1eac93229e7cc (patch) | |
tree | ed41d301755d34313f40521a16cfa53bbc8c5609 /drivers/ata/pata_ixp4xx_cf.c | |
parent | 664e8503fee2f299d0f96eaab0f5f8fae8fad325 (diff) |
[PATCH] libata: add missing sht->slave_destroy
Add missing sht->slave_destroy. Most drivers received this fix in
didn't. Fix those four drives.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/ata/pata_ixp4xx_cf.c')
-rw-r--r-- | drivers/ata/pata_ixp4xx_cf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_ixp4xx_cf.c b/drivers/ata/pata_ixp4xx_cf.c index d2268bfe6f55..14c6a2daf52e 100644 --- a/drivers/ata/pata_ixp4xx_cf.c +++ b/drivers/ata/pata_ixp4xx_cf.c | |||
@@ -117,6 +117,7 @@ static struct scsi_host_template ixp4xx_sht = { | |||
117 | .proc_name = DRV_NAME, | 117 | .proc_name = DRV_NAME, |
118 | .dma_boundary = ATA_DMA_BOUNDARY, | 118 | .dma_boundary = ATA_DMA_BOUNDARY, |
119 | .slave_configure = ata_scsi_slave_config, | 119 | .slave_configure = ata_scsi_slave_config, |
120 | .slave_destroy = ata_scsi_slave_destroy, | ||
120 | .bios_param = ata_std_bios_param, | 121 | .bios_param = ata_std_bios_param, |
121 | }; | 122 | }; |
122 | 123 | ||