diff options
Diffstat (limited to '2.0/default/NqNfc.cpp')
-rw-r--r-- | 2.0/default/NqNfc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/2.0/default/NqNfc.cpp b/2.0/default/NqNfc.cpp index 4e2cd03..8e07a6f 100644 --- a/2.0/default/NqNfc.cpp +++ b/2.0/default/NqNfc.cpp @@ -85,12 +85,12 @@ Return<bool> NqNfc::setVendorParam(const ::android::hardware::hidl_string &key, return phNxpNciHal_setSystemProperty(key, value); } -Return<bool> NqNfc::resetEse(uint64_t resetType) { +Return<bool> NqNfc::resetEse(uint64_t /* resetType */) { NFCSTATUS status = NFCSTATUS_FAILED; bool ret = false; ALOGD("NqNfc::resetEse Entry"); - status = phNxpNciHal_resetEse(resetType); + status = phNxpNciHal_resetEse(); if(NFCSTATUS_SUCCESS == status) { ret = true; status = NFCSTATUS_SUCCESS; |