Skip to content

Commit dafdae9

Browse files
committed
NFC: Fix typo in SLIX poller
1 parent 80de280 commit dafdae9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/nfc/protocols/slix/slix_poller.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static NfcCommand slix_poller_handler_idle(SlixPoller* instance) {
5454
return NfcCommandContinue;
5555
}
5656

57-
static NfcCommand slix_poller_handler_get_nfc_system_info(SlixPoller* instance) {
57+
static NfcCommand slix_poller_handler_get_nxp_sys_info(SlixPoller* instance) {
5858
if(slix_type_has_features(instance->type, SLIX_TYPE_FEATURE_NFC_SYSTEM_INFO)) {
5959
instance->error = slix_poller_get_nxp_system_info(instance, &instance->data->system_info);
6060
if(instance->error == SlixErrorNone) {
@@ -186,7 +186,7 @@ static NfcCommand slix_poller_handler_ready(SlixPoller* instance) {
186186
static const SlixPollerStateHandler slix_poller_state_handler[SlixPollerStateNum] = {
187187
[SlixPollerStateIdle] = slix_poller_handler_idle,
188188
[SlixPollerStateError] = slix_poller_handler_error,
189-
[SlixPollerStateGetNxpSysInfo] = slix_poller_handler_get_nfc_system_info,
189+
[SlixPollerStateGetNxpSysInfo] = slix_poller_handler_get_nxp_sys_info,
190190
[SlixPollerStateReadSignature] = slix_poller_handler_read_signature,
191191
[SlixPollerStateCheckPrivacyPassword] = slix_poller_handler_check_privacy_password,
192192
[SlixPollerStatePrivacyUnlock] = slix_poller_handler_privacy_unlock,

0 commit comments

Comments
 (0)