diff options
-rw-r--r-- | net/nfc/nci/ntf.c | 2 | ||||
-rw-r--r-- | net/nfc/nci/rsp.c | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/net/nfc/nci/ntf.c b/net/nfc/nci/ntf.c index b16a8dc2afbe..10682bf7029d 100644 --- a/net/nfc/nci/ntf.c +++ b/net/nfc/nci/ntf.c | |||
@@ -280,6 +280,8 @@ static void nci_rf_deactivate_ntf_packet(struct nci_dev *ndev, | |||
280 | /* complete the data exchange transaction, if exists */ | 280 | /* complete the data exchange transaction, if exists */ |
281 | if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags)) | 281 | if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags)) |
282 | nci_data_exchange_complete(ndev, NULL, -EIO); | 282 | nci_data_exchange_complete(ndev, NULL, -EIO); |
283 | |||
284 | nci_req_complete(ndev, NCI_STATUS_OK); | ||
283 | } | 285 | } |
284 | 286 | ||
285 | void nci_ntf_packet(struct nci_dev *ndev, struct sk_buff *skb) | 287 | void nci_ntf_packet(struct nci_dev *ndev, struct sk_buff *skb) |
diff --git a/net/nfc/nci/rsp.c b/net/nfc/nci/rsp.c index 2840ae2f3615..3c73e92eb625 100644 --- a/net/nfc/nci/rsp.c +++ b/net/nfc/nci/rsp.c | |||
@@ -151,7 +151,10 @@ static void nci_rf_deactivate_rsp_packet(struct nci_dev *ndev, | |||
151 | 151 | ||
152 | clear_bit(NCI_DISCOVERY, &ndev->flags); | 152 | clear_bit(NCI_DISCOVERY, &ndev->flags); |
153 | 153 | ||
154 | nci_req_complete(ndev, status); | 154 | /* If target was active, complete the request only in deactivate_ntf */ |
155 | if ((status != NCI_STATUS_OK) || | ||
156 | (!test_bit(NCI_POLL_ACTIVE, &ndev->flags))) | ||
157 | nci_req_complete(ndev, status); | ||
155 | } | 158 | } |
156 | 159 | ||
157 | void nci_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb) | 160 | void nci_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb) |