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_platform.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_platform.c')
-rw-r--r-- | drivers/ata/pata_platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_platform.c b/drivers/ata/pata_platform.c index 63d6687f0ba9..5ff74e4ce590 100644 --- a/drivers/ata/pata_platform.c +++ b/drivers/ata/pata_platform.c | |||
@@ -78,6 +78,7 @@ static struct scsi_host_template pata_platform_sht = { | |||
78 | .proc_name = DRV_NAME, | 78 | .proc_name = DRV_NAME, |
79 | .dma_boundary = ATA_DMA_BOUNDARY, | 79 | .dma_boundary = ATA_DMA_BOUNDARY, |
80 | .slave_configure = ata_scsi_slave_config, | 80 | .slave_configure = ata_scsi_slave_config, |
81 | .slave_destroy = ata_scsi_slave_destroy, | ||
81 | .bios_param = ata_std_bios_param, | 82 | .bios_param = ata_std_bios_param, |
82 | }; | 83 | }; |
83 | 84 | ||