diff options
author | Georg Veichtlbauer <georg@vware.at> | 2021-07-28 10:30:22 +0200 |
---|---|---|
committer | Arian <arian.kulmer@web.de> | 2021-09-30 12:16:22 +0200 |
commit | 435c6ddd75f28e80f9f79ff829b01f0414a0ef80 (patch) | |
tree | 77ebac3045ac71e2036c55b72aa592323ad535c3 | |
parent | 5582786895046b5a49c6d8687e579a284455f37a (diff) |
shinano-common: nfc: Fix FW_DLL_ROOT_DIR
Commit 1c834a13e8494d25b730a75664c0cdf41e9a9709 moved NFC firmware
DLL from vendor/firmware to vendor/lib, which causes the HAL not
to be able to load the library on phDnldNfc_LoadFW.
Fix this by adjusting the base path.
Change-Id: Ic9477b44eca323b8d6e4f2c78afac6b1b2fe71a6
-rw-r--r-- | pn54x/common/phNfcCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pn54x/common/phNfcCommon.h b/pn54x/common/phNfcCommon.h index 638a133..521e4ed 100644 --- a/pn54x/common/phNfcCommon.h +++ b/pn54x/common/phNfcCommon.h @@ -33,7 +33,7 @@ #include <pthread.h> #include <semaphore.h> -#define FW_DLL_ROOT_DIR "/system/vendor/firmware/" +#define FW_DLL_ROOT_DIR "/system/vendor/lib/" #define FW_DLL_EXTENSION ".so" #if (NFC_NXP_CHIP_TYPE == PN548C2) |