NFC: Add tx skb allocation routine
This is a factorization of the current rawsock tx skb allocation routine, as it will be used by the LLCP code. We also rename nfc_alloc_skb to nfc_alloc_recv_skb for consistency sake. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
52858b51b2
commit
7c7cd3bfec
@ -157,7 +157,10 @@ static inline const char *nfc_device_name(struct nfc_dev *dev)
|
||||
return dev_name(&dev->dev);
|
||||
}
|
||||
|
||||
struct sk_buff *nfc_alloc_skb(unsigned int size, gfp_t gfp);
|
||||
struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
|
||||
unsigned int flags, unsigned int size,
|
||||
unsigned int *err);
|
||||
struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp);
|
||||
|
||||
int nfc_targets_found(struct nfc_dev *dev, struct nfc_target *targets,
|
||||
int ntargets);
|
||||
|
Reference in New Issue
Block a user