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_winbond.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_winbond.c')
-rw-r--r-- | drivers/ata/pata_winbond.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_winbond.c b/drivers/ata/pata_winbond.c index 48941d0757e9..b02ad1d3afed 100644 --- a/drivers/ata/pata_winbond.c +++ b/drivers/ata/pata_winbond.c | |||
@@ -133,6 +133,7 @@ static struct scsi_host_template winbond_sht = { | |||
133 | .proc_name = DRV_NAME, | 133 | .proc_name = DRV_NAME, |
134 | .dma_boundary = ATA_DMA_BOUNDARY, | 134 | .dma_boundary = ATA_DMA_BOUNDARY, |
135 | .slave_configure = ata_scsi_slave_config, | 135 | .slave_configure = ata_scsi_slave_config, |
136 | .slave_destroy = ata_scsi_slave_destroy, | ||
136 | .bios_param = ata_std_bios_param, | 137 | .bios_param = ata_std_bios_param, |
137 | }; | 138 | }; |
138 | 139 | ||