diff options
Diffstat (limited to 'rootdir')
-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" ) |