diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-22 16:36:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-22 16:36:52 -0400 |
commit | 7100e505b76b4e2efd88b2459d1a932214e29f8a (patch) | |
tree | a8eae8687dc1511c89463b1eb93c8349a7471ab3 /drivers/platform/x86/intel_ips.c | |
parent | cb47c1831fa406c964468b259f2082c16cc3f757 (diff) | |
parent | 75a4161a58dd157a2bd2dc8e9986e45b62ac46cf (diff) |
Merge tag 'pm-for-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull power management updates from Rafael Wysocki:
- ACPI conversion to PM handling based on struct dev_pm_ops.
- Conversion of a number of platform drivers to PM handling based on
struct dev_pm_ops and removal of empty legacy PM callbacks from a
couple of PCI drivers.
- Suspend-to-both for in-kernel hibernation from Bojan Smojver.
- cpuidle fixes and cleanups from ShuoX Liu, Daniel Lezcano and Preeti
Murthy.
- cpufreq bug fixes from Jonghwa Lee and Stephen Boyd.
- Suspend and hibernate fixes from Srivatsa Bhat and Colin Cross.
- Generic PM domains framework updates.
- RTC CMOS wakeup signaling update from Paul Fox.
- sparse warnings fixes from Sachin Kamat.
- Build warnings fixes for the generic PM domains framework and PM
sysfs code.
- sysfs switch for printing device suspend times from Sameer Nanda.
- Documentation fix from Oskar Schirmer.
* tag 'pm-for-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (70 commits)
cpufreq: Fix sysfs deadlock with concurrent hotplug/frequency switch
EXYNOS: bugfix on retrieving old_index from freqs.old
PM / Sleep: call early resume handlers when suspend_noirq fails
PM / QoS: Use NULL pointer instead of plain integer in qos.c
PM / QoS: Use NULL pointer instead of plain integer in pm_qos.h
PM / Sleep: Require CAP_BLOCK_SUSPEND to use wake_lock/wake_unlock
PM / Sleep: Add missing static storage class specifiers in main.c
cpuilde / ACPI: remove time from acpi_processor_cx structure
cpuidle / ACPI: remove usage from acpi_processor_cx structure
cpuidle / ACPI : remove latency_ticks from acpi_processor_cx structure
rtc-cmos: report wakeups from interrupt handler
PM / Sleep: Fix build warning in sysfs.c for CONFIG_PM_SLEEP unset
PM / Domains: Fix build warning for CONFIG_PM_RUNTIME unset
olpc-xo15-sci: Use struct dev_pm_ops for power management
PM / Domains: Replace plain integer with NULL pointer in domain.c file
PM / Domains: Add missing static storage class specifier in domain.c file
PM / crypto / ux500: Use struct dev_pm_ops for power management
PM / IPMI: Remove empty legacy PCI PM callbacks
tpm_nsc: Use struct dev_pm_ops for power management
tpm_tis: Use struct dev_pm_ops for power management
...
Diffstat (limited to 'drivers/platform/x86/intel_ips.c')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 9af4257d4901..5051aa970e0a 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c | |||
@@ -1719,21 +1719,6 @@ static void ips_remove(struct pci_dev *dev) | |||
1719 | dev_dbg(&dev->dev, "IPS driver removed\n"); | 1719 | dev_dbg(&dev->dev, "IPS driver removed\n"); |
1720 | } | 1720 | } |
1721 | 1721 | ||
1722 | #ifdef CONFIG_PM | ||
1723 | static int ips_suspend(struct pci_dev *dev, pm_message_t state) | ||
1724 | { | ||
1725 | return 0; | ||
1726 | } | ||
1727 | |||
1728 | static int ips_resume(struct pci_dev *dev) | ||
1729 | { | ||
1730 | return 0; | ||
1731 | } | ||
1732 | #else | ||
1733 | #define ips_suspend NULL | ||
1734 | #define ips_resume NULL | ||
1735 | #endif /* CONFIG_PM */ | ||
1736 | |||
1737 | static void ips_shutdown(struct pci_dev *dev) | 1722 | static void ips_shutdown(struct pci_dev *dev) |
1738 | { | 1723 | { |
1739 | } | 1724 | } |
@@ -1743,8 +1728,6 @@ static struct pci_driver ips_pci_driver = { | |||
1743 | .id_table = ips_id_table, | 1728 | .id_table = ips_id_table, |
1744 | .probe = ips_probe, | 1729 | .probe = ips_probe, |
1745 | .remove = ips_remove, | 1730 | .remove = ips_remove, |
1746 | .suspend = ips_suspend, | ||
1747 | .resume = ips_resume, | ||
1748 | .shutdown = ips_shutdown, | 1731 | .shutdown = ips_shutdown, |
1749 | }; | 1732 | }; |
1750 | 1733 | ||