NFC: digital: Rename Type V tags to Type 5 tags
authorMark A. Greer <mgreer@animalcreek.com>
Thu, 6 Mar 2014 14:39:19 +0000 (07:39 -0700)
committerSamuel Ortiz <sameo@linux.intel.com>
Mon, 10 Mar 2014 23:40:59 +0000 (00:40 +0100)
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>
include/net/nfc/digital.h
net/nfc/digital_core.c

index b9699d7dd0391b7b0a6730e689da7b5ba0aae8c9..7655cfe27c3465f726dc0d1eed26040e61b6b366 100644 (file)
@@ -60,7 +60,7 @@ enum {
        NFC_DIGITAL_FRAMING_NFC_DEP_ACTIVATED,
 
        NFC_DIGITAL_FRAMING_ISO15693_INVENTORY,
-       NFC_DIGITAL_FRAMING_ISO15693_TVT,       /* Type V Tag (ISO/IEC 15693) */
+       NFC_DIGITAL_FRAMING_ISO15693_T5T,
 
        NFC_DIGITAL_FRAMING_LAST,
 };
index 492fa7355e0d394b8dfe860b48bc968d9c03bf6b..e01e15dbf1abe1541aeb2643cf5521e8e1419e75 100644 (file)
@@ -334,7 +334,7 @@ int digital_target_found(struct nfc_digital_dev *ddev,
                break;
 
        case NFC_PROTO_ISO15693:
-               framing = NFC_DIGITAL_FRAMING_ISO15693_TVT;
+               framing = NFC_DIGITAL_FRAMING_ISO15693_T5T;
                check_crc = digital_skb_check_crc_b;
                add_crc = digital_skb_add_crc_b;
                break;
This page took 0.026559 seconds and 5 git commands to generate.