Re: [PATCH v2 1/4] nfc: pn533: add UART phy driver
From: Johan Hovold <johan@kernel.org>
Date: 2018-10-20 09:27:38
Also in:
linux-wireless, lkml
From: Johan Hovold <johan@kernel.org>
Date: 2018-10-20 09:27:38
Also in:
linux-wireless, lkml
On Fri, Oct 19, 2018 at 10:57:28AM +0200, Lars Poeschel wrote:
On Thu, Oct 18, 2018 at 05:00:28PM +0200, Marcel Holtmann wrote:
quoted
quoted
--- a/drivers/nfc/pn533/Kconfig +++ b/drivers/nfc/pn533/Kconfig@@ -25,3 +25,13 @@ config NFC_PN533_I2CIf you choose to build a module, it'll be called pn533_i2c. Say N if unsure. + +config NFC_PN532_UART + tristate "NFC PN532 device support (UART)”you are missing the "depends on SERIAL_DEV_BUS” here.Yes, absolutely right. I missed that. I will post a follow-up. BTW a question: Only enabling SERIAL_DEV_BUS did not suffice for me. I also had to enable SERIAL_DEV_CTRL_TTYPORT, otherwise the probe of the driver was not called. This seems a bit odd to me. This option seems unrelated, but without it, it did not work. Should I better depend on SERIAL_DEV_CTRL_TTYPORT then ?
No, SERIAL_DEV_BUS is the correct (build-time) dependency. In principle, your driver will work with any serdev-controller implementation even if we currently only have one of those in the kernel (and SERIAL_DEV_CTRL_TTYPORT therefore default to Y whenever SERIAL_DEV_BUS is selected). Johan