diff options
author | Mark A. Greer <mgreer@animalcreek.com> | 2014-03-06 09:39:19 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2014-03-10 19:40:59 -0400 |
commit | ceeee42d85b4c91b16b6019e69c584589b72be04 (patch) | |
tree | 919eac20c45a080dbb52a417afd2569011c2cb35 | |
parent | 0b51fc5633df563695f5021bc121a9df20b3eb14 (diff) |
NFC: digital: Rename Type V tags to Type 5 tags
According to the latest draft specification from
the NFC-V committee, ISO/IEC 15693 tags will be
referred to as "Type 5" tags and not "Type V"
tags anymore. Make the code reflect the new
terminology.
Signed-off-by: Mark A. Greer <mgreer@animalcreek.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | include/net/nfc/digital.h | 2 | ||||
-rw-r--r-- | net/nfc/digital_core.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/net/nfc/digital.h b/include/net/nfc/digital.h index b9699d7dd039..7655cfe27c34 100644 --- a/include/net/nfc/digital.h +++ b/include/net/nfc/digital.h | |||
@@ -60,7 +60,7 @@ enum { | |||
60 | NFC_DIGITAL_FRAMING_NFC_DEP_ACTIVATED, | 60 | NFC_DIGITAL_FRAMING_NFC_DEP_ACTIVATED, |
61 | 61 | ||
62 | NFC_DIGITAL_FRAMING_ISO15693_INVENTORY, | 62 | NFC_DIGITAL_FRAMING_ISO15693_INVENTORY, |
63 | NFC_DIGITAL_FRAMING_ISO15693_TVT, /* Type V Tag (ISO/IEC 15693) */ | 63 | NFC_DIGITAL_FRAMING_ISO15693_T5T, |
64 | 64 | ||
65 | NFC_DIGITAL_FRAMING_LAST, | 65 | NFC_DIGITAL_FRAMING_LAST, |
66 | }; | 66 | }; |
diff --git a/net/nfc/digital_core.c b/net/nfc/digital_core.c index 492fa7355e0d..e01e15dbf1ab 100644 --- a/net/nfc/digital_core.c +++ b/net/nfc/digital_core.c | |||
@@ -334,7 +334,7 @@ int digital_target_found(struct nfc_digital_dev *ddev, | |||
334 | break; | 334 | break; |
335 | 335 | ||
336 | case NFC_PROTO_ISO15693: | 336 | case NFC_PROTO_ISO15693: |
337 | framing = NFC_DIGITAL_FRAMING_ISO15693_TVT; | 337 | framing = NFC_DIGITAL_FRAMING_ISO15693_T5T; |
338 | check_crc = digital_skb_check_crc_b; | 338 | check_crc = digital_skb_check_crc_b; |
339 | add_crc = digital_skb_add_crc_b; | 339 | add_crc = digital_skb_add_crc_b; |
340 | break; | 340 | break; |