diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-02 20:58:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-02 20:58:52 -0500 |
commit | bb648a0d22908116b4ef168935a160d7f17c4e6d (patch) | |
tree | 5ccb780a679433283ac7931d2bcbeb92828e443d /drivers/ata/pata_sc1200.c | |
parent | 8b453397da923eae4aeb3b41e49793295e09eedf (diff) | |
parent | 6ffa01d88c9dd45e2ed917b5eeeb494d07efb1ab (diff) |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
libata: add CONFIG_PM to libata core layer
libata: add missing CONFIG_PM in LLDs
libata: add missing PM callbacks
pata_qdi: Fix initialisation
[libata] pata_cmd64x: fix driver description in comments
[libata] pata_{legacy,sc1200,sl82c105}: add missing hooks
[libata] change master/slave IDENTIFY order
libata-core: Fix simplex handling
Diffstat (limited to 'drivers/ata/pata_sc1200.c')
-rw-r--r-- | drivers/ata/pata_sc1200.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/ata/pata_sc1200.c b/drivers/ata/pata_sc1200.c index 58e42fbd14f9..93b3ed0f9e8a 100644 --- a/drivers/ata/pata_sc1200.c +++ b/drivers/ata/pata_sc1200.c | |||
@@ -194,8 +194,10 @@ static struct scsi_host_template sc1200_sht = { | |||
194 | .slave_configure = ata_scsi_slave_config, | 194 | .slave_configure = ata_scsi_slave_config, |
195 | .slave_destroy = ata_scsi_slave_destroy, | 195 | .slave_destroy = ata_scsi_slave_destroy, |
196 | .bios_param = ata_std_bios_param, | 196 | .bios_param = ata_std_bios_param, |
197 | #ifdef CONFIG_PM | ||
197 | .resume = ata_scsi_device_resume, | 198 | .resume = ata_scsi_device_resume, |
198 | .suspend = ata_scsi_device_suspend, | 199 | .suspend = ata_scsi_device_suspend, |
200 | #endif | ||
199 | }; | 201 | }; |
200 | 202 | ||
201 | static struct ata_port_operations sc1200_port_ops = { | 203 | static struct ata_port_operations sc1200_port_ops = { |
@@ -210,7 +212,10 @@ static struct ata_port_operations sc1200_port_ops = { | |||
210 | .exec_command = ata_exec_command, | 212 | .exec_command = ata_exec_command, |
211 | .dev_select = ata_std_dev_select, | 213 | .dev_select = ata_std_dev_select, |
212 | 214 | ||
215 | .freeze = ata_bmdma_freeze, | ||
216 | .thaw = ata_bmdma_thaw, | ||
213 | .error_handler = ata_bmdma_error_handler, | 217 | .error_handler = ata_bmdma_error_handler, |
218 | .post_internal_cmd = ata_bmdma_post_internal_cmd, | ||
214 | 219 | ||
215 | .bmdma_setup = ata_bmdma_setup, | 220 | .bmdma_setup = ata_bmdma_setup, |
216 | .bmdma_start = ata_bmdma_start, | 221 | .bmdma_start = ata_bmdma_start, |
@@ -266,8 +271,10 @@ static struct pci_driver sc1200_pci_driver = { | |||
266 | .id_table = sc1200, | 271 | .id_table = sc1200, |
267 | .probe = sc1200_init_one, | 272 | .probe = sc1200_init_one, |
268 | .remove = ata_pci_remove_one, | 273 | .remove = ata_pci_remove_one, |
274 | #ifdef CONFIG_PM | ||
269 | .suspend = ata_pci_device_suspend, | 275 | .suspend = ata_pci_device_suspend, |
270 | .resume = ata_pci_device_resume, | 276 | .resume = ata_pci_device_resume, |
277 | #endif | ||
271 | }; | 278 | }; |
272 | 279 | ||
273 | static int __init sc1200_init(void) | 280 | static int __init sc1200_init(void) |