diff options
author | Tejun Heo <htejun@gmail.com> | 2007-03-02 03:31:26 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-03-02 18:30:35 -0500 |
commit | 438ac6d5e3f8106a6bd1a5682c508d660294a85d (patch) | |
tree | 759aad55bb9850fe21709e12ca79cbdb3bf881f2 /drivers/ata/pata_mpiix.c | |
parent | b23ff24436c97fb26428f3a337faf189292cc307 (diff) |
libata: add missing CONFIG_PM in LLDs
Add missing #ifdef CONFIG_PM conditionals around all PM related parts
in libata LLDs.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_mpiix.c')
-rw-r--r-- | drivers/ata/pata_mpiix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ata/pata_mpiix.c b/drivers/ata/pata_mpiix.c index f2e7115f7ab9..4abe45ac19a2 100644 --- a/drivers/ata/pata_mpiix.c +++ b/drivers/ata/pata_mpiix.c | |||
@@ -165,8 +165,10 @@ static struct scsi_host_template mpiix_sht = { | |||
165 | .slave_configure = ata_scsi_slave_config, | 165 | .slave_configure = ata_scsi_slave_config, |
166 | .slave_destroy = ata_scsi_slave_destroy, | 166 | .slave_destroy = ata_scsi_slave_destroy, |
167 | .bios_param = ata_std_bios_param, | 167 | .bios_param = ata_std_bios_param, |
168 | #ifdef CONFIG_PM | ||
168 | .resume = ata_scsi_device_resume, | 169 | .resume = ata_scsi_device_resume, |
169 | .suspend = ata_scsi_device_suspend, | 170 | .suspend = ata_scsi_device_suspend, |
171 | #endif | ||
170 | }; | 172 | }; |
171 | 173 | ||
172 | static struct ata_port_operations mpiix_port_ops = { | 174 | static struct ata_port_operations mpiix_port_ops = { |
@@ -270,8 +272,10 @@ static struct pci_driver mpiix_pci_driver = { | |||
270 | .id_table = mpiix, | 272 | .id_table = mpiix, |
271 | .probe = mpiix_init_one, | 273 | .probe = mpiix_init_one, |
272 | .remove = ata_pci_remove_one, | 274 | .remove = ata_pci_remove_one, |
275 | #ifdef CONFIG_PM | ||
273 | .suspend = ata_pci_device_suspend, | 276 | .suspend = ata_pci_device_suspend, |
274 | .resume = ata_pci_device_resume, | 277 | .resume = ata_pci_device_resume, |
278 | #endif | ||
275 | }; | 279 | }; |
276 | 280 | ||
277 | static int __init mpiix_init(void) | 281 | static int __init mpiix_init(void) |