Skip to content

Commit

Permalink
NFC: pn533: Dump tx and rx data in debug mode
Browse files Browse the repository at this point in the history
Signed-off-by: Waldemar Rymarkiewicz <waldemar.rymarkiewicz@tieto.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Waldemar Rymarkiewicz authored and Samuel Ortiz committed Jan 9, 2013
1 parent b1e666f commit 99e591b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/nfc/pn533.c
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,9 @@ static void pn533_recv_response(struct urb *urb)

in_frame = dev->in_urb->transfer_buffer;

print_hex_dump(KERN_DEBUG, "PN533 RX: ", DUMP_PREFIX_NONE, 16, 1,
in_frame, PN533_FRAME_SIZE(in_frame), false);

if (!pn533_rx_frame_is_valid(in_frame)) {
nfc_dev_err(&dev->interface->dev, "Received an invalid frame");
dev->wq_in_error = -EIO;
Expand Down Expand Up @@ -664,6 +667,9 @@ static int __pn533_send_cmd_frame_async(struct pn533 *dev,
dev->in_urb->transfer_buffer = in_frame;
dev->in_urb->transfer_buffer_length = in_frame_len;

print_hex_dump(KERN_DEBUG, "PN533 TX: ", DUMP_PREFIX_NONE, 16, 1,
out_frame, PN533_FRAME_SIZE(out_frame), false);

rc = usb_submit_urb(dev->out_urb, GFP_KERNEL);
if (rc)
return rc;
Expand Down

0 comments on commit 99e591b

Please sign in to comment.