Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 351917
b: refs/heads/master
c: 858ce02
h: refs/heads/master
i:
  351915: b998a73
v: v3
  • Loading branch information
Thierry Escande authored and Samuel Ortiz committed Jan 13, 2013
1 parent 7b45166 commit 49baa48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fb97c3e80f99988079df4fb5f3c84aea4e7f806a
refs/heads/master: 858ce0220922a52e009d17dcaaab5dfd76f9833b
4 changes: 2 additions & 2 deletions trunk/drivers/nfc/pn533.c
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ static int __pn533_send_async(struct pn533 *dev, u8 cmd_code,

nfc_dev_dbg(&dev->interface->dev, "Sending command 0x%x", cmd_code);

arg = kzalloc(sizeof(arg), GFP_KERNEL);
arg = kzalloc(sizeof(*arg), GFP_KERNEL);
if (!arg)
return -ENOMEM;

Expand Down Expand Up @@ -863,7 +863,7 @@ static int pn533_send_cmd_direct_async(struct pn533 *dev, u8 cmd_code,
if (!resp)
return -ENOMEM;

arg = kzalloc(sizeof(arg), GFP_KERNEL);
arg = kzalloc(sizeof(*arg), GFP_KERNEL);
if (!arg) {
dev_kfree_skb(resp);
return -ENOMEM;
Expand Down

0 comments on commit 49baa48

Please sign in to comment.