sm6375-common: Explicitly set multisim property

* Our family of devices all use dual sim slots. So let's set the prop once and for all.

Change-Id: I68be2c6c65dcc7e114823fe9f93f5444a65f4420
This commit is contained in:
Anand S 2024-08-16 20:16:00 +05:30
parent ba9668d835
commit a42bde7bc4
No known key found for this signature in database
GPG key ID: 3B2983FA448B3D61
3 changed files with 8 additions and 9 deletions

View file

@ -359,10 +359,6 @@ set_ro_hw_properties_upgrade()
utag_value=$(cat $utag_path/ascii)
setprop $prop_prefix$utag_name "$utag_value"
notice "ro.vendor.hw.$utag_name='$utag_value'"
if [ "$utag_name" = "dualsim" ] && [ "$utag_value" = "true" ]; then
setprop persist.vendor.radio.multisim.config dsds
fi
done
}
@ -388,10 +384,6 @@ set_ro_hw_properties()
utag_value=$(cat $utag_path/ascii)
setprop $prop_prefix$utag_name "$utag_value"
notice "$prop_prefix$utag_name='$utag_value'"
if [ "$utag_name" = "dualsim" ] && [ "$utag_value" = "true" ]; then
setprop persist.vendor.radio.multisim.config dsds
fi
done
}