diff options
-rw-r--r-- | drivers/ata/pata_cmd640.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/ata/pata_cmd640.c b/drivers/ata/pata_cmd640.c index ab9468d16edb..2105985a8013 100644 --- a/drivers/ata/pata_cmd640.c +++ b/drivers/ata/pata_cmd640.c | |||
@@ -181,8 +181,10 @@ static struct scsi_host_template cmd640_sht = { | |||
181 | .slave_configure = ata_scsi_slave_config, | 181 | .slave_configure = ata_scsi_slave_config, |
182 | .slave_destroy = ata_scsi_slave_destroy, | 182 | .slave_destroy = ata_scsi_slave_destroy, |
183 | .bios_param = ata_std_bios_param, | 183 | .bios_param = ata_std_bios_param, |
184 | #ifdef CONFIG_PM | ||
184 | .resume = ata_scsi_device_resume, | 185 | .resume = ata_scsi_device_resume, |
185 | .suspend = ata_scsi_device_suspend, | 186 | .suspend = ata_scsi_device_suspend, |
187 | #endif | ||
186 | }; | 188 | }; |
187 | 189 | ||
188 | static struct ata_port_operations cmd640_port_ops = { | 190 | static struct ata_port_operations cmd640_port_ops = { |
@@ -267,7 +269,11 @@ static int cmd640_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
267 | static int cmd640_reinit_one(struct pci_dev *pdev) | 269 | static int cmd640_reinit_one(struct pci_dev *pdev) |
268 | { | 270 | { |
269 | cmd640_hardware_init(pdev); | 271 | cmd640_hardware_init(pdev); |
272 | #ifdef CONFIG_PM | ||
270 | return ata_pci_device_resume(pdev); | 273 | return ata_pci_device_resume(pdev); |
274 | #else | ||
275 | return 0; | ||
276 | #endif | ||
271 | } | 277 | } |
272 | 278 | ||
273 | static const struct pci_device_id cmd640[] = { | 279 | static const struct pci_device_id cmd640[] = { |
@@ -280,7 +286,9 @@ static struct pci_driver cmd640_pci_driver = { | |||
280 | .id_table = cmd640, | 286 | .id_table = cmd640, |
281 | .probe = cmd640_init_one, | 287 | .probe = cmd640_init_one, |
282 | .remove = ata_pci_remove_one, | 288 | .remove = ata_pci_remove_one, |
289 | #ifdef CONFIG_PM | ||
283 | .suspend = ata_pci_device_suspend, | 290 | .suspend = ata_pci_device_suspend, |
291 | #endif | ||
284 | .resume = cmd640_reinit_one, | 292 | .resume = cmd640_reinit_one, |
285 | }; | 293 | }; |
286 | 294 | ||