diff options
author | Max Weffers <rcstar6696@gmail.com> | 2020-05-18 12:51:26 +0200 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2020-05-20 23:11:18 +0200 |
commit | 173dd53c1dbe28b870f6c7fab3c7d60f889b833b (patch) | |
tree | ba079f38f4e0504124dd8a9dba8597e7c81e9cbf | |
parent | 59f88dbaf33b347692b95922bb4380ac432a5cb4 (diff) |
sdm660-common: Start vendor.cdsprpcd only for sdm660
* disable it for sdm636 and sdm630
* fixes logspam on twolip and whyred with cdsprpcd not able to start
Change-Id: I4de5333709c2fb57f315b47842fbd12d4d80c36d
Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
-rw-r--r-- | rootdir/etc/init.qcom.post_boot.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/rootdir/etc/init.qcom.post_boot.sh b/rootdir/etc/init.qcom.post_boot.sh index af9f424..eb642cd 100644 --- a/rootdir/etc/init.qcom.post_boot.sh +++ b/rootdir/etc/init.qcom.post_boot.sh @@ -2623,9 +2623,6 @@ case "$target" in done echo "cpufreq" > /sys/class/devfreq/soc:qcom,mincpubw/governor - # Start cdsprpcd only for sdm660 and disable for sdm630 - start vendor.cdsprpcd - # Start Host based Touch processing case "$hw_platform" in "MTP" | "Surf" | "RCM" | "QRD" ) @@ -2634,6 +2631,13 @@ case "$target" in esac ;; esac + + # Start cdsprpcd only for sdm660 and disable for sdm630 and sdm636 + case "$soc_id" in + "317" | "324" | "325" | "326" ) + start vendor.cdsprpcd + esac + #Apply settings for sdm630 and Tahaa case "$soc_id" in "318" | "327" | "385" ) |