diff options
author | Tejun Heo | 2007-05-04 15:30:34 +0200 |
---|---|---|
committer | Jeff Garzik | 2007-05-10 02:15:46 +0200 |
commit | e1e143cf976ed635a45b768b4a26684173320d6f (patch) | |
tree | 960f622a1081ff903c5d6a91cfcab327a04012c7 /drivers/ata | |
parent | sata_nv: fix ADMA freeze/thaw/irq_clear issues (diff) | |
download | kernel-qcow2-linux-e1e143cf976ed635a45b768b4a26684173320d6f.tar.gz kernel-qcow2-linux-e1e143cf976ed635a45b768b4a26684173320d6f.tar.xz kernel-qcow2-linux-e1e143cf976ed635a45b768b4a26684173320d6f.zip |
sata_via: add missing PM hooks
For some reason, sata_via is missing PM hooks. Add them. Spotted by
Jeroen Janssen <jeroen.janssen@gmail.com>.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: Jeroen Janssen <jeroen.janssen@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/sata_via.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/ata/sata_via.c b/drivers/ata/sata_via.c index 305ab7c68ca5..939c9246fdd1 100644 --- a/drivers/ata/sata_via.c +++ b/drivers/ata/sata_via.c @@ -93,6 +93,10 @@ static struct pci_driver svia_pci_driver = { .name = DRV_NAME, .id_table = svia_pci_tbl, .probe = svia_init_one, +#ifdef CONFIG_PM + .suspend = ata_pci_device_suspend, + .resume = ata_pci_device_resume, +#endif .remove = ata_pci_remove_one, }; @@ -112,6 +116,10 @@ static struct scsi_host_template svia_sht = { .slave_configure = ata_scsi_slave_config, .slave_destroy = ata_scsi_slave_destroy, .bios_param = ata_std_bios_param, +#ifdef CONFIG_PM + .suspend = ata_scsi_device_suspend, + .resume = ata_scsi_device_resume, +#endif }; static const struct ata_port_operations vt6420_sata_ops = { |