Skip to content

Commit

Permalink
NFC: pn533: Use 0x3 for SENSF_REQ Time Slot Number (TSN)
Browse files Browse the repository at this point in the history
LLCP validation requires TSN to be 0x03 for type F.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Samuel Ortiz committed Jun 14, 2013
1 parent 391d8a2 commit 31c4446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/nfc/pn533.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static const struct pn533_poll_modulations poll_mod[] = {
.opcode = PN533_FELICA_OPC_SENSF_REQ,
.sc = PN533_FELICA_SENSF_SC_ALL,
.rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
.tsn = 0,
.tsn = 0x03,
},
},
.len = 7,
Expand All @@ -271,7 +271,7 @@ static const struct pn533_poll_modulations poll_mod[] = {
.opcode = PN533_FELICA_OPC_SENSF_REQ,
.sc = PN533_FELICA_SENSF_SC_ALL,
.rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
.tsn = 0,
.tsn = 0x03,
},
},
.len = 7,
Expand Down

0 comments on commit 31c4446

Please sign in to comment.