Skip to content

Commit

Permalink
NFC: pn544: Fix a typo in a debug message
Browse files Browse the repository at this point in the history
The ending character of the string shoulb be \n, not \b.

Fixes: 17936b4 ("NFC: Standardize logging style")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
tititiou36 authored and davem330 committed Feb 17, 2020
1 parent 6699170 commit c4c1078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/nfc/pn544/pn544.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ static int pn544_hci_tm_send(struct nfc_hci_dev *hdev, struct sk_buff *skb)
static int pn544_hci_check_presence(struct nfc_hci_dev *hdev,
struct nfc_target *target)
{
pr_debug("supported protocol %d\b", target->supported_protocols);
pr_debug("supported protocol %d\n", target->supported_protocols);
if (target->supported_protocols & (NFC_PROTO_ISO14443_MASK |
NFC_PROTO_ISO14443_B_MASK)) {
return nfc_hci_send_cmd(hdev, target->hci_reader_gate,
Expand Down

0 comments on commit c4c1078

Please sign in to comment.