Return-path: Received: from mx08-00178001.pphosted.com ([91.207.212.93]:22206 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1162313AbbKTJun (ORCPT ); Fri, 20 Nov 2015 04:50:43 -0500 From: Shikha Singh To: , , , , CC: , , , , , Subject: [[linux-nfc] PATCH v4 0/3] *** ST95HF driver v4 *** Date: Fri, 20 Nov 2015 04:49:54 -0500 Message-ID: <1448012997-6000-1-git-send-email-shikha.singh@st.com> (sfid-20151120_105048_843454_3AC49349) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: New patch series of ST95HF Linux Driver v4 Changelog: v4: 1. Address feedback from Lars Steubesand: Fix of issue in sending RESET command to ST95HF. 2. Improvement of some comments in code. v3: Address feedbacks from Lars Steubesand: i)Included modification in drivers/nfc/Kconfig and drivers/nfc/Makefile to build ST95HF driver. ii)Included header file linux/property.h explicitely in core.c and all header files are included in sorted order. iii)GPL version is modified in MODULE_LICENSE to match with header. v2.0: 1.Address feedbacks from Samuel: i)Code improvement and code optimization 2.Address feedbacks from Lars Steubesand: i)Code improvement and code optimization ii)Bug fix : Kernel crash due to race between irq_thread_handler() and st95hf_remove() is resolved. 3.Address feedback from Christophe Henri Ricard: i)Correction in file headers. v1.0: First release of ST95HF driver. Shikha Singh (3): NFC: digital: Add Type4A tags support driver: nfc: Add ST95HF NFC Transceiver support DT: bindings: net: nfc: Add ST95HF binding doc .../devicetree/bindings/net/nfc/st95hf.txt | 50 + drivers/nfc/Kconfig | 1 + drivers/nfc/Makefile | 1 + drivers/nfc/st95hf/Kconfig | 10 + drivers/nfc/st95hf/Makefile | 6 + drivers/nfc/st95hf/core.c | 1246 ++++++++++++++++++++ drivers/nfc/st95hf/spi.c | 167 +++ drivers/nfc/st95hf/spi.h | 64 + net/nfc/digital_core.c | 3 +- 9 files changed, 1547 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/net/nfc/st95hf.txt create mode 100644 drivers/nfc/st95hf/Kconfig create mode 100644 drivers/nfc/st95hf/Makefile create mode 100644 drivers/nfc/st95hf/core.c create mode 100644 drivers/nfc/st95hf/spi.c create mode 100644 drivers/nfc/st95hf/spi.h -- 1.8.2.1