diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-03-02 18:09:05 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-03-02 18:09:05 -0500 |
commit | bf7551c441d4b7b0de867d21b96881f3911e89b0 (patch) | |
tree | 51f024698c9972060077a9e4eea6661f0e67fef1 /drivers/ata/pata_sl82c105.c | |
parent | f31f0cc2f0b7527072d94d02da332d9bb8d7d94c (diff) |
[libata] pata_{legacy,sc1200,sl82c105}: add missing hooks
Alan Cox noticed several hooks in pata_* drivers were missing, when
he authored his ->cable_detect hook patches. This patch extracts
just those fixes from Alan's patches, adding the necessary hooks
(usually ->freeze, ->thaw, and ->post_internal_cmd) to the drivers.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_sl82c105.c')
-rw-r--r-- | drivers/ata/pata_sl82c105.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ata/pata_sl82c105.c b/drivers/ata/pata_sl82c105.c index 13e81f0ef1f7..b681441cfcb9 100644 --- a/drivers/ata/pata_sl82c105.c +++ b/drivers/ata/pata_sl82c105.c | |||
@@ -234,7 +234,10 @@ static struct ata_port_operations sl82c105_port_ops = { | |||
234 | .exec_command = ata_exec_command, | 234 | .exec_command = ata_exec_command, |
235 | .dev_select = ata_std_dev_select, | 235 | .dev_select = ata_std_dev_select, |
236 | 236 | ||
237 | .freeze = ata_bmdma_freeze, | ||
238 | .thaw = ata_bmdma_thaw, | ||
237 | .error_handler = sl82c105_error_handler, | 239 | .error_handler = sl82c105_error_handler, |
240 | .post_internal_cmd = ata_bmdma_post_internal_cmd, | ||
238 | 241 | ||
239 | .bmdma_setup = ata_bmdma_setup, | 242 | .bmdma_setup = ata_bmdma_setup, |
240 | .bmdma_start = sl82c105_bmdma_start, | 243 | .bmdma_start = sl82c105_bmdma_start, |