Skip to content

Commit c4c1078

Browse files
tititiou36davem330
authored andcommitted
NFC: pn544: Fix a typo in a debug message
The ending character of the string shoulb be \n, not \b. Fixes: 17936b4 ("NFC: Standardize logging style") Signed-off-by: Christophe JAILLET <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6699170 commit c4c1078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/nfc/pn544/pn544.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ static int pn544_hci_tm_send(struct nfc_hci_dev *hdev, struct sk_buff *skb)
682682
static int pn544_hci_check_presence(struct nfc_hci_dev *hdev,
683683
struct nfc_target *target)
684684
{
685-
pr_debug("supported protocol %d\b", target->supported_protocols);
685+
pr_debug("supported protocol %d\n", target->supported_protocols);
686686
if (target->supported_protocols & (NFC_PROTO_ISO14443_MASK |
687687
NFC_PROTO_ISO14443_B_MASK)) {
688688
return nfc_hci_send_cmd(hdev, target->hci_reader_gate,

0 commit comments

Comments
 (0)