NFC: st21nfca: Change st21nfca_get_iso14443_3_uid parameter name
st21nfca_get_iso14443_3_uid gate parameter name is incorrect and should be uid. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
9906a88df2
commit
a8f686ec10
1 changed files with 2 additions and 2 deletions
|
@ -572,7 +572,7 @@ exit:
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int st21nfca_get_iso14443_3_uid(struct nfc_hci_dev *hdev, u8 *gate,
|
static int st21nfca_get_iso14443_3_uid(struct nfc_hci_dev *hdev, u8 *uid,
|
||||||
int *len)
|
int *len)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
@ -588,7 +588,7 @@ static int st21nfca_get_iso14443_3_uid(struct nfc_hci_dev *hdev, u8 *gate,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(gate, uid_skb->data, uid_skb->len);
|
memcpy(uid, uid_skb->data, uid_skb->len);
|
||||||
*len = uid_skb->len;
|
*len = uid_skb->len;
|
||||||
exit:
|
exit:
|
||||||
kfree_skb(uid_skb);
|
kfree_skb(uid_skb);
|
||||||
|
|
Loading…
Add table
Reference in a new issue