Commit 122c1958 authored by Julien Lefrique's avatar Julien Lefrique Committed by Samuel Ortiz

NFC: NCI: Forward data received in Target mode to nfc core

Signed-off-by: default avatarJulien Lefrique <lefrique@marvell.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 485f442f
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
* NFC Controller (NFCC) and a Device Host (DH). * NFC Controller (NFCC) and a Device Host (DH).
* *
* Copyright (C) 2011 Texas Instruments, Inc. * Copyright (C) 2011 Texas Instruments, Inc.
* Copyright (C) 2014 Marvell International Ltd.
* *
* Written by Ilan Elias <ilane@ti.com> * Written by Ilan Elias <ilane@ti.com>
* *
...@@ -223,7 +224,17 @@ static void nci_add_rx_data_frag(struct nci_dev *ndev, ...@@ -223,7 +224,17 @@ static void nci_add_rx_data_frag(struct nci_dev *ndev,
} }
exit: exit:
nci_data_exchange_complete(ndev, skb, err); if (ndev->nfc_dev->rf_mode == NFC_RF_INITIATOR) {
nci_data_exchange_complete(ndev, skb, err);
} else if (ndev->nfc_dev->rf_mode == NFC_RF_TARGET) {
/* Data received in Target mode, forward to nfc core */
err = nfc_tm_data_received(ndev->nfc_dev, skb);
if (err)
pr_err("unable to handle received data\n");
} else {
pr_err("rf mode unknown\n");
kfree_skb(skb);
}
} }
/* Rx Data packet */ /* Rx Data packet */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment