NFC: pn533: Fix missing parenthesis
This is a quite critical patch as it fixes potential reference to undefined general_bytes which were never set correctly on target activation due to missing parenthesis. Signed-off-by: Waldemar Rymarkiewicz <waldemar.rymarkiewicz@tieto.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
390a1bd853
commit
8a0ecfe74b
1 changed files with 2 additions and 1 deletions
|
@ -1724,9 +1724,10 @@ static int pn533_activate_target_nfcdep(struct pn533 *dev)
|
||||||
|
|
||||||
rsp = (struct pn533_cmd_activate_response *)resp->data;
|
rsp = (struct pn533_cmd_activate_response *)resp->data;
|
||||||
rc = rsp->status & PN533_CMD_RET_MASK;
|
rc = rsp->status & PN533_CMD_RET_MASK;
|
||||||
if (rc != PN533_CMD_RET_SUCCESS)
|
if (rc != PN533_CMD_RET_SUCCESS) {
|
||||||
dev_kfree_skb(resp);
|
dev_kfree_skb(resp);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
/* ATR_RES general bytes are located at offset 16 */
|
/* ATR_RES general bytes are located at offset 16 */
|
||||||
gt_len = resp->len - 16;
|
gt_len = resp->len - 16;
|
||||||
|
|
Loading…
Add table
Reference in a new issue