Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 300879
b: refs/heads/master
c: 4be646e
h: refs/heads/master
i:
  300877: e08f63b
  300875: 8d1f91f
  300871: f310b8f
  300863: 74fb27e
v: v3
  • Loading branch information
Samuel Ortiz authored and John W. Linville committed Apr 12, 2012
1 parent 4dc8771 commit 1bc01e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c8d56ae78653c02fc6e6f304a18f860302481c2d
refs/heads/master: 4be646ecc94b34acec41aba628b57cfc02ab7ae0
7 changes: 7 additions & 0 deletions trunk/net/nfc/llcp/llcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,9 @@ static void nfc_llcp_tx_work(struct work_struct *work)
skb = skb_dequeue(&local->tx_queue);
if (skb != NULL) {
pr_debug("Sending pending skb\n");
print_hex_dump(KERN_DEBUG, "LLCP Tx: ", DUMP_PREFIX_OFFSET,
16, 1, skb->data, skb->len, true);

nfc_data_exchange(local->dev, local->target_idx,
skb, nfc_llcp_recv, local);
} else {
Expand Down Expand Up @@ -814,6 +817,10 @@ static void nfc_llcp_rx_work(struct work_struct *work)

pr_debug("ptype 0x%x dsap 0x%x ssap 0x%x\n", ptype, dsap, ssap);

if (ptype != LLCP_PDU_SYMM)
print_hex_dump(KERN_DEBUG, "LLCP Rx: ", DUMP_PREFIX_OFFSET,
16, 1, skb->data, skb->len, true);

switch (ptype) {
case LLCP_PDU_SYMM:
pr_debug("SYMM\n");
Expand Down

0 comments on commit 1bc01e7

Please sign in to comment.