summaryrefslogtreecommitdiff
path: root/drivers/nfc/pn533/Makefile
diff options
context:
space:
mode:
authorLars Poeschel <poeschel@lemonage.de>2019-10-29 15:47:14 +0100
committerDavid S. Miller <davem@davemloft.net>2019-10-29 21:05:26 -0700
commitc656aa4c27b17a8c70da223ed5ab42145800d6b5 (patch)
tree2daa4cce7ac78fe27ad0653e20b6176c8e6bead3 /drivers/nfc/pn533/Makefile
parent843cc92ed323692943c94d7e6ce97a0353b8c2d7 (diff)
nfc: pn533: add UART phy driver
This adds the UART phy interface for the pn533 driver. The pn533 driver can be used through UART interface this way. It is implemented as a serdev device. Cc: Johan Hovold <johan@kernel.org> Cc: Claudiu Beznea <Claudiu.Beznea@microchip.com> Cc: David Miller <davem@davemloft.net> Signed-off-by: Lars Poeschel <poeschel@lemonage.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc/pn533/Makefile')
-rw-r--r--drivers/nfc/pn533/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/nfc/pn533/Makefile b/drivers/nfc/pn533/Makefile
index 43c25b4f9466..b9648337576f 100644
--- a/drivers/nfc/pn533/Makefile
+++ b/drivers/nfc/pn533/Makefile
@@ -4,7 +4,9 @@
#
pn533_usb-objs = usb.o
pn533_i2c-objs = i2c.o
+pn532_uart-objs = uart.o
obj-$(CONFIG_NFC_PN533) += pn533.o
obj-$(CONFIG_NFC_PN533_USB) += pn533_usb.o
obj-$(CONFIG_NFC_PN533_I2C) += pn533_i2c.o
+obj-$(CONFIG_NFC_PN532_UART) += pn532_uart.o