summaryrefslogtreecommitdiff
path: root/target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch
diff options
context:
space:
mode:
authorStefan Lippers-Hollmann <s.l-h@gmx.de>2018-05-18 04:50:09 +0200
committerJohn Crispin <john@phrozen.org>2018-05-24 17:24:31 +0200
commit63c17199888e6b7977d41a22851ee854cffc8103 (patch)
tree9ebe408f39f9408a73085f3abbb5264c79672eb2 /target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch
parent2301bbdf880b8e222008fbd350cd903fdd447d3e (diff)
downloadmtk-20170518-63c17199888e6b7977d41a22851ee854cffc8103.zip
mtk-20170518-63c17199888e6b7977d41a22851ee854cffc8103.tar.gz
mtk-20170518-63c17199888e6b7977d41a22851ee854cffc8103.tar.bz2
ipq806x: drop linux 4.9 support
Signed-off-by: Stefan Lippers-Hollmann <s.l-h@gmx.de> (cherry picked from commit 2819732219904a81205abe0fa3fbe9c06884f119)
Diffstat (limited to 'target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch')
-rw-r--r--target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch b/target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch
deleted file mode 100644
index b7e375d..0000000
--- a/target/linux/ipq806x/patches-4.9/0070-qcom-spm-fix-probe-order.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Check for SCM availability before attempting to use SPM
-
-Signed-off-by: Felix Fietkau <nbd@nbd.name>
-
---- a/drivers/soc/qcom/spm.c
-+++ b/drivers/soc/qcom/spm.c
-@@ -219,6 +219,9 @@ static int __init qcom_cpuidle_init(stru
- cpumask_t mask;
- bool use_scm_power_down = false;
-
-+ if (!qcom_scm_is_available())
-+ return -EPROBE_DEFER;
-+
- for (i = 0; ; i++) {
- state_node = of_parse_phandle(cpu_node, "cpu-idle-states", i);
- if (!state_node)