summaryrefslogtreecommitdiffstats
path: root/drivers/cpuidle
diff options
context:
space:
mode:
authorStewart Smith2015-12-09 07:18:20 +0100
committerMichael Ellerman2015-12-17 12:40:54 +0100
commite4d54f71d29997344b4c4c8d47708240f9f23a5c (patch)
tree58b131a5a2645f4ad9b9f998a626415c31942cbf /drivers/cpuidle
parentpowerpc/powernv: Remove OPALv2 firmware define and references (diff)
downloadkernel-qcow2-linux-e4d54f71d29997344b4c4c8d47708240f9f23a5c.tar.gz
kernel-qcow2-linux-e4d54f71d29997344b4c4c8d47708240f9f23a5c.tar.xz
kernel-qcow2-linux-e4d54f71d29997344b4c4c8d47708240f9f23a5c.zip
powerpc/powernv: remove FW_FEATURE_OPALv3 and just use FW_FEATURE_OPAL
Long ago, only in the lab, there was OPALv1 and OPALv2. Now there is just OPALv3, with nobody ever expecting anything on pre-OPALv3 to be cared about or supported by mainline kernels. So, let's remove FW_FEATURE_OPALv3 and instead use FW_FEATURE_OPAL exclusively. Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/cpuidle')
-rw-r--r--drivers/cpuidle/cpuidle-powernv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpuidle/cpuidle-powernv.c b/drivers/cpuidle/cpuidle-powernv.c
index 845bafcfa792..e12dc30d8864 100644
--- a/drivers/cpuidle/cpuidle-powernv.c
+++ b/drivers/cpuidle/cpuidle-powernv.c
@@ -264,7 +264,7 @@ static int powernv_idle_probe(void)
if (cpuidle_disable != IDLE_NO_OVERRIDE)
return -ENODEV;
- if (firmware_has_feature(FW_FEATURE_OPALv3)) {
+ if (firmware_has_feature(FW_FEATURE_OPAL)) {
cpuidle_state_table = powernv_states;
/* Device tree can indicate more idle states */
max_idle_state = powernv_add_idle_states();