aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/nfc
diff options
context:
space:
mode:
authorLars Poeschel <poeschel@lemonage.de>2019-10-29 15:48:02 +0100
committerDavid S. Miller <davem@davemloft.net>2019-10-29 21:05:26 -0700
commite4a5dc1849d35411c80d01d85361f13f02c26536 (patch)
tree2e033fdb816181137252a97f1af33701499277d4 /drivers/nfc
parentnfc: pn533: Add autopoll capability (diff)
downloadlinux-dev-e4a5dc1849d35411c80d01d85361f13f02c26536.tar.xz
linux-dev-e4a5dc1849d35411c80d01d85361f13f02c26536.zip
nfc: pn532_uart: Make use of pn532 autopoll
This switches the pn532 UART phy driver from manually polling to the new autopoll mechanism. Cc: Johan Hovold <johan@kernel.org> Signed-off-by: Lars Poeschel <poeschel@lemonage.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r--drivers/nfc/pn533/uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/pn533/uart.c b/drivers/nfc/pn533/uart.c
index 1e35bf09faf2..46e5ff16f699 100644
--- a/drivers/nfc/pn533/uart.c
+++ b/drivers/nfc/pn533/uart.c
@@ -261,7 +261,7 @@ static int pn532_uart_probe(struct serdev_device *serdev)
serdev_device_set_flow_control(serdev, false);
pn532->send_wakeup = PN532_SEND_WAKEUP;
timer_setup(&pn532->cmd_timeout, pn532_cmd_timeout, 0);
- priv = pn53x_common_init(PN533_DEVICE_PN532,
+ priv = pn53x_common_init(PN533_DEVICE_PN532_AUTOPOLL,
PN533_PROTO_REQ_ACK_RESP,
pn532, &uart_phy_ops, NULL,
&pn532->serdev->dev);