diff options
| author | Ruchi Kandoi <kandoiruchi@google.com> | 2019-03-18 14:04:39 -0700 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2019-03-18 14:04:39 -0700 |
| commit | 7d0fbeadbf5786d50913df7df158483ece67c23b (patch) | |
| tree | 9c65c99b286c550f8cb61d109a22a9e113a43155 /halimpl | |
| parent | 16e11972cb0e29d376f6afd72bb13239c72ebe68 (diff) | |
| parent | 020b3fb8a96576fdf7c3fedefd0de871bfb3cb36 (diff) | |
| download | android_hardware_nxp_nfc-7d0fbeadbf5786d50913df7df158483ece67c23b.tar.gz android_hardware_nxp_nfc-7d0fbeadbf5786d50913df7df158483ece67c23b.tar.bz2 android_hardware_nxp_nfc-7d0fbeadbf5786d50913df7df158483ece67c23b.zip | |
Rename persist.nfc.uicc_enabled to persist.vendor.nfc.uicc_enabled am: 28006a8caa am: 8c8c75b657
am: 020b3fb8a9
Change-Id: I17a032230c6ce3fcf746c7ebd2ea3e225fb3074b
Diffstat (limited to 'halimpl')
| -rwxr-xr-x | halimpl/hal/phNxpNciHal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/halimpl/hal/phNxpNciHal.cc b/halimpl/hal/phNxpNciHal.cc index 8a9d743..3b39af7 100755 --- a/halimpl/hal/phNxpNciHal.cc +++ b/halimpl/hal/phNxpNciHal.cc @@ -3133,7 +3133,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; } |
