Commit 45e4bfb9 authored by Paul Chaisson's avatar Paul Chaisson Committed by Martijn Coenen
Browse files

Fix device id for 43341 after stack update.

The stack modified the HAL to only compare the chip generation
(e.g."43341") instead of including the chip revision, when trying
to determine if the XTAL frequency needs to be updated.

Change-Id: Iab31706f67d8bab7927ae3180aec8fc36a745b47
parent 13ccf4eb
......@@ -65,8 +65,6 @@ static void mayDisableSecureElement (StartupConfig& config);
#define NFA_APP_DEFAULT_I2C_PATCHFILE_NAME "\0"
#endif
#define BRCM_43341B0_ID 0x43341b00
tNFC_POST_RESET_CB nfc_post_reset_cb =
{
/* Default Patch & Pre-Patch */
......@@ -82,7 +80,7 @@ tNFC_POST_RESET_CB nfc_post_reset_cb =
{
1, /* number of valid entries */
{
{BRCM_43341B0_ID, 37400, NFC_HAL_XTAL_INDEX_37400},
{0x43341000, 37400, NFC_HAL_XTAL_INDEX_37400}, // All revisions of 43341 use 37,400
{0, 0, 0},
{0, 0, 0},
{0, 0, 0},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment