diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2012-07-06 13:09:20 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-07-10 15:37:11 -0400 |
commit | b633f0507e19224f1527921644722bfb36db9bb0 (patch) | |
tree | caf9b8a1d74e3838f259cfc70e9e7cbf70934fa3 /drivers/char | |
parent | 8324be05380be044df8b70cb4bfb0c0b50eec3e5 (diff) |
tpm_tis: Use struct dev_pm_ops for power management
Make the tpm_tis driver define its PM callbacks through
a struct dev_pm_ops object rather than by using legacy PM hooks
in struct platform_driver.
This allows the driver to use tpm_pm_suspend() as its suspend
callback directly, without defining its own suspend callback
routine.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tpm/tpm_tis.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index 555a643e88c..89682fa8801 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c | |||
@@ -806,27 +806,25 @@ module_param_string(hid, tpm_pnp_tbl[TIS_HID_USR_IDX].id, | |||
806 | sizeof(tpm_pnp_tbl[TIS_HID_USR_IDX].id), 0444); | 806 | sizeof(tpm_pnp_tbl[TIS_HID_USR_IDX].id), 0444); |
807 | MODULE_PARM_DESC(hid, "Set additional specific HID for this driver to probe"); | 807 | MODULE_PARM_DESC(hid, "Set additional specific HID for this driver to probe"); |
808 | #endif | 808 | #endif |
809 | static int tpm_tis_suspend(struct platform_device *dev, pm_message_t msg) | ||
810 | { | ||
811 | return tpm_pm_suspend(&dev->dev); | ||
812 | } | ||
813 | 809 | ||
814 | static int tpm_tis_resume(struct platform_device *dev) | 810 | static int tpm_tis_resume(struct device *dev) |
815 | { | 811 | { |
816 | struct tpm_chip *chip = dev_get_drvdata(&dev->dev); | 812 | struct tpm_chip *chip = dev_get_drvdata(dev); |
817 | 813 | ||
818 | if (chip->vendor.irq) | 814 | if (chip->vendor.irq) |
819 | tpm_tis_reenable_interrupts(chip); | 815 | tpm_tis_reenable_interrupts(chip); |
820 | 816 | ||
821 | return tpm_pm_resume(&dev->dev); | 817 | return tpm_pm_resume(dev); |
822 | } | 818 | } |
819 | |||
820 | static SIMPLE_DEV_PM_OPS(tpm_tis_pm, tpm_pm_suspend, tpm_tis_resume); | ||
821 | |||
823 | static struct platform_driver tis_drv = { | 822 | static struct platform_driver tis_drv = { |
824 | .driver = { | 823 | .driver = { |
825 | .name = "tpm_tis", | 824 | .name = "tpm_tis", |
826 | .owner = THIS_MODULE, | 825 | .owner = THIS_MODULE, |
826 | .pm = &tpm_tis_pm, | ||
827 | }, | 827 | }, |
828 | .suspend = tpm_tis_suspend, | ||
829 | .resume = tpm_tis_resume, | ||
830 | }; | 828 | }; |
831 | 829 | ||
832 | static struct platform_device *pdev; | 830 | static struct platform_device *pdev; |