diff options
| author | Ruchi Kandoi <kandoiruchi@google.com> | 2019-03-13 13:06:05 -0700 |
|---|---|---|
| committer | Ruchi Kandoi <kandoiruchi@google.com> | 2019-03-18 18:59:12 +0000 |
| commit | 28006a8caa90d9ed3f8346488685ad1a434c3776 (patch) | |
| tree | ea44c0c927a49de7b44a0b779c67d323cb5d2419 /halimpl | |
| parent | 7f837acc59dfec199b1cdbe976fba6452000e842 (diff) | |
| download | android_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-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 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; } |
