Skip to content

Commit

Permalink
[core] Removed unused internal function
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Oct 12, 2020
1 parent de3dea8 commit f567753
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions core/src/nfc_target.c
Expand Up @@ -619,20 +619,6 @@ nfc_target_request_timeout(
return G_SOURCE_REMOVE;
}

static
NfcTargetRequest*
nfc_target_transmit_find_req(
NfcTargetRequestQueue* queue,
NfcTargetSequence* seq)
{
NfcTargetRequest* req = queue->first;

while ((req && req->seq != seq)) {
req = req->next;
}
return req;
}

static
void
nfc_target_transmit_queue_req(
Expand Down

0 comments on commit f567753

Please sign in to comment.