aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc
diff options
context:
space:
mode:
authorMark Greer <mgreer@animalcreek.com>2017-06-15 13:46:16 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2017-06-22 18:19:59 -0400
commit1b609e4384a10bc4139ab6ca63caa809eb2d5d0c (patch)
treecfb54b78e3614f414090e74e0c296689a940e74d /net/nfc
parent7f9f171336baec8ec71d57b6d329bf8cea5c1562 (diff)
NFC: digital: NFC-DEP Target WT(nfcdep,max) is now 14
Version 1.1 of the NFC Forum's NFC Digital Protocol Technical Specification dated 2014-07-14 specifies that the NFC-DEP Protocol's Target WT(nfcdep,max) value is 14. In version 1.0 it was 8 so change the value in the Linux NFC-DEP Protocol code accordingly. Signed-off-by: Mark Greer <mgreer@animalcreek.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc')
-rw-r--r--net/nfc/digital_dep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/digital_dep.c b/net/nfc/digital_dep.c
index 74ccc2dd79d0..4f9a973988b2 100644
--- a/net/nfc/digital_dep.c
+++ b/net/nfc/digital_dep.c
@@ -151,7 +151,7 @@ static const u8 digital_payload_bits_map[4] = {
151 * 0 <= wt <= 14 (given by the target by the TO field of ATR_RES response) 151 * 0 <= wt <= 14 (given by the target by the TO field of ATR_RES response)
152 */ 152 */
153#define DIGITAL_NFC_DEP_IN_MAX_WT 14 153#define DIGITAL_NFC_DEP_IN_MAX_WT 14
154#define DIGITAL_NFC_DEP_TG_MAX_WT 8 154#define DIGITAL_NFC_DEP_TG_MAX_WT 14
155static const u16 digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT + 1] = { 155static const u16 digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT + 1] = {
156 100, 101, 101, 102, 105, 156 100, 101, 101, 102, 105,
157 110, 119, 139, 177, 255, 157 110, 119, 139, 177, 255,