NFC: nci: Add T1T support notification
authorChristophe Ricard <christophe.ricard@gmail.com>
Sun, 25 May 2014 20:35:40 +0000 (22:35 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Tue, 22 Jul 2014 22:49:36 +0000 (00:49 +0200)
Add T1T matching with Jewel during notification.
It was causing "the target found does not have the desired protocol"
to show up.

Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
net/nfc/nci/ntf.c

index f8f6af231381b336b111a9c01ce0ccb2dfc72856..df91bb95b12aacd265f89ba82db7e3ae4cf0553e 100644 (file)
@@ -166,7 +166,9 @@ static int nci_add_new_protocol(struct nci_dev *ndev,
        struct rf_tech_specific_params_nfcf_poll *nfcf_poll;
        __u32 protocol;
 
-       if (rf_protocol == NCI_RF_PROTOCOL_T2T)
+       if (rf_protocol == NCI_RF_PROTOCOL_T1T)
+               protocol = NFC_PROTO_JEWEL_MASK;
+       else if (rf_protocol == NCI_RF_PROTOCOL_T2T)
                protocol = NFC_PROTO_MIFARE_MASK;
        else if (rf_protocol == NCI_RF_PROTOCOL_ISO_DEP)
                if (rf_tech_and_mode == NCI_NFC_A_PASSIVE_POLL_MODE)