Re: [PATCH] nfc: s3fwrn5: fix platform_no_drv_owner.cocci warnings

2015-10-06 Thread Robert Baldyga
ci > > CC: Robert Baldyga > Signed-off-by: Fengguang Wu Acked-by: Robert Baldyga Thanks! Robert Baldyga > --- > > i2c.c |1 - > 1 file changed, 1 deletion(-) > > --- a/drivers/nfc/s3fwrn5/i2c.c > +++ b/drivers/nfc/s3fwrn5/i2c.c > @@ -290,7 +290,6 @@ MOD

Re: [PATCH] nfc: s3fwrn5: constify s3fwrn5_phy_ops structures

2015-11-13 Thread Robert Baldyga
On 11/13/2015 01:04 PM, Julia Lawall wrote: > The s3fwrn5_phy_ops structure is never modified, so declare it as const. > > Done with the help of Coccinelle. > > Signed-off-by: Julia Lawall Acked-by: Robert Baldyga Thanks! Robert Baldyga > > --- > drivers/nfc/

[PATCH] nfc: s3fwrn5: Add driver for Samsung S3FWRN5 NFC Chip

2015-07-29 Thread Robert Baldyga
Add driver for Samsung S3FWRN5 NFC controller. S3FWRN5 is using NCI protocol and I2C communication interface. Signed-off-by: Robert Baldyga --- .../devicetree/bindings/net/nfc/s3fwrn5.txt| 27 ++ MAINTAINERS| 6 + drivers/nfc/Kconfig

Re: [PATCH] nfc: s3fwrn5: Add driver for Samsung S3FWRN5 NFC Chip

2015-07-30 Thread Robert Baldyga
On 07/30/2015 12:22 PM, Paul Bolle wrote: > On wo, 2015-07-29 at 14:15 +0200, Robert Baldyga wrote: >> --- /dev/null >> +++ b/drivers/nfc/s3fwrn5/Kconfig >> @@ -0,0 +1,22 @@ >> +config NFC_S3FWRN5 >> +tristate "Samsung S3FWRN5 NFC driver" &

[PATCH v2] nfc: s3fwrn5: Add driver for Samsung S3FWRN5 NFC Chip

2015-07-30 Thread Robert Baldyga
Add driver for Samsung S3FWRN5 NFC controller. S3FWRN5 is using NCI protocol and I2C communication interface. Signed-off-by: Robert Baldyga --- Changelog: v2: - Adressed comments from Paul Bolle v1: http://www.spinics.net/lists/kernel/msg2044290.html .../devicetree/bindings/net/nfc/s3fwrn5

[PATCH v3 2/3] NFC: nci: export nci_core_reset and nci_core_init

2015-08-20 Thread Robert Baldyga
Some drivers needs to have ability to reinit NCI core, for example after updating firmware in setup() of post_setup() callback. This patch makes nci_core_reset() and nci_core_init() functions public, to make it possible. Signed-off-by: Robert Baldyga --- include/net/nfc/nci_core.h | 2 ++ net

[PATCH v3 3/3] nfc: s3fwrn5: Add driver for Samsung S3FWRN5 NFC Chip

2015-08-20 Thread Robert Baldyga
Add driver for Samsung S3FWRN5 NFC controller. S3FWRN5 is using NCI protocol and I2C communication interface. Signed-off-by: Robert Baldyga --- .../devicetree/bindings/net/nfc/s3fwrn5.txt| 27 ++ MAINTAINERS| 6 + drivers/nfc/Kconfig

[PATCH v3 1/3] NFC: nci: Add post_setup handler

2015-08-20 Thread Robert Baldyga
Some drivers require non-standard configuration after NCI_CORE_INIT request, because they need to know ndev->manufact_specific_info or ndev->manufact_id. This patch adds post_setup handler allowing to do such custom configuration. Signed-off-by: Robert Baldyga --- include/net/nfc/nci_core

[PATCH v3 0/3] nfc: Add driver for Samsung S3FWRN5 NFC Chip

2015-08-20 Thread Robert Baldyga
ndev->manufact_specific_info. The second one adds nci_core_reset() and nci_core_init() functions which are needed to reinit NCI core after updating firmware in pose_setup() callback. Best regards, Robert Baldyga Changelog: v3: - Addressed comments from Samuel Ortiz: - Used nci_prop