summaryrefslogtreecommitdiffstats
path: root/halimpl
diff options
context:
space:
mode:
authorRuchi Kandoi <kandoiruchi@google.com>2019-03-13 13:06:05 -0700
committerRuchi Kandoi <kandoiruchi@google.com>2019-03-18 18:59:12 +0000
commit28006a8caa90d9ed3f8346488685ad1a434c3776 (patch)
treeea44c0c927a49de7b44a0b779c67d323cb5d2419 /halimpl
parent7f837acc59dfec199b1cdbe976fba6452000e842 (diff)
downloadandroid_hardware_nxp_nfc-28006a8caa90d9ed3f8346488685ad1a434c3776.tar.gz
android_hardware_nxp_nfc-28006a8caa90d9ed3f8346488685ad1a434c3776.tar.bz2
android_hardware_nxp_nfc-28006a8caa90d9ed3f8346488685ad1a434c3776.zip
Rename persist.nfc.uicc_enabled to persist.vendor.nfc.uicc_enabled
Test: Manual; Check if property is accessible to vendor HAL Bug: 110326714 Change-Id: I9c6f67fdfb5548269db95cc34129717eb124dc45
Diffstat (limited to 'halimpl')
-rwxr-xr-xhalimpl/hal/phNxpNciHal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/halimpl/hal/phNxpNciHal.cc b/halimpl/hal/phNxpNciHal.cc
index a618142..2ebbca5 100755
--- a/halimpl/hal/phNxpNciHal.cc
+++ b/halimpl/hal/phNxpNciHal.cc
@@ -3132,7 +3132,7 @@ void phNxpNciHal_configFeatureList(uint8_t* msg, uint16_t msg_len) {
******************************************************************************/
void phNxpNciHal_getPersistUiccSetting() {
char valueStr[PROPERTY_VALUE_MAX] = {0};
- int len = property_get("persist.nfc.uicc_enabled", valueStr, "false");
+ int len = property_get("persist.vendor.nfc.uicc_enabled", valueStr, "false");
if (len > 0) {
persist_uicc_enabled = (len == 4 && (memcmp(valueStr, "true", len) == 0)) ? true : false;
}