From: Tejun Heo Date: Fri, 4 May 2007 13:30:34 +0000 (+0200) Subject: [PATCH] sata_via: add missing PM hooks X-Git-Tag: v2.6.20.14~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef229b87b823863f065a53daf39e202944615da2;p=thirdparty%2Fkernel%2Fstable.git [PATCH] sata_via: add missing PM hooks For some reason, sata_via is missing PM hooks. Add them. Spotted by Jeroen Janssen . Signed-off-by: Tejun Heo Cc: Jeroen Janssen Signed-off-by: Chris Wright Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/ata/sata_via.c b/drivers/ata/sata_via.c index d3d5c0d57032f..f6ac2da84c908 100644 --- a/drivers/ata/sata_via.c +++ b/drivers/ata/sata_via.c @@ -90,6 +90,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, }; @@ -109,6 +113,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 = {