diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2017-01-08 00:03:40 +0300 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2017-02-08 18:54:20 +0300 |
commit | 6eac0e817aee2518a96b5ce9d02b904e0667f370 (patch) | |
tree | e53897a589015ff16ccd15b03a9f49306b434fbf /drivers/net/wireless/intel/iwlwifi/Kconfig | |
parent | 04fa3e680b4dd2fdd11d0152fb9b6067e7aac140 (diff) | |
download | linux-6eac0e817aee2518a96b5ce9d02b904e0667f370.tar.xz |
iwlwifi: make RTPM depend on EXPERT
Enabling the RTPM Kconfig option can be fairly risky.
Runtime PM must be validated against a specific platform
before it can be safely enabled. Hence, it makes no sense
for distros and other big OS vendors to enable it since
they ship code to various systems and unknown platform.
Make sure that this is hinted properly by making the
IWLWIFI_PCIE_RTPM Kconfig option depend on EXPERT.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=172411
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/Kconfig')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/Kconfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/Kconfig b/drivers/net/wireless/intel/iwlwifi/Kconfig index b64db47b31bb..c5f2ddf9b0fe 100644 --- a/drivers/net/wireless/intel/iwlwifi/Kconfig +++ b/drivers/net/wireless/intel/iwlwifi/Kconfig @@ -90,13 +90,16 @@ config IWLWIFI_BCAST_FILTERING config IWLWIFI_PCIE_RTPM bool "Enable runtime power management mode for PCIe devices" - depends on IWLMVM && PM + depends on IWLMVM && PM && EXPERT default false help Say Y here to enable runtime power management for PCIe devices. If enabled, the device will go into low power mode when idle for a short period of time, allowing for improved - power saving during runtime. + power saving during runtime. Note that this feature requires + a tight integration with the platform. It is not recommended + to enable this feature without proper validation with the + specific target platform. If unsure, say N. |