nfc_llc
struct nfc_llc *llc;
struct nfc_llc;
struct nfc_llc *nfc_llc_allocate(const char *name, struct nfc_hci_dev *hdev,
void nfc_llc_free(struct nfc_llc *llc);
int nfc_llc_start(struct nfc_llc *llc);
int nfc_llc_stop(struct nfc_llc *llc);
void nfc_llc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb);
int nfc_llc_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb);
void nfc_llc_free(struct nfc_llc *llc)
int nfc_llc_start(struct nfc_llc *llc)
int nfc_llc_stop(struct nfc_llc *llc)
void nfc_llc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb)
int nfc_llc_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb)
void *nfc_llc_get_data(struct nfc_llc *llc)
struct nfc_llc *nfc_llc_allocate(const char *name, struct nfc_hci_dev *hdev,
struct nfc_llc *llc;
llc = kzalloc_obj(struct nfc_llc);
void (*deinit) (struct nfc_llc *llc);
int (*start) (struct nfc_llc *llc);
int (*stop) (struct nfc_llc *llc);
void (*rcv_from_drv) (struct nfc_llc *llc, struct sk_buff *skb);
int (*xmit_from_hci) (struct nfc_llc *llc, struct sk_buff *skb);
void *nfc_llc_get_data(struct nfc_llc *llc);
static void llc_nop_deinit(struct nfc_llc *llc)
static int llc_nop_start(struct nfc_llc *llc)
static int llc_nop_stop(struct nfc_llc *llc)
static void llc_nop_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb)
static int llc_nop_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb)
static void llc_shdlc_deinit(struct nfc_llc *llc)
static int llc_shdlc_start(struct nfc_llc *llc)
static int llc_shdlc_stop(struct nfc_llc *llc)
static void llc_shdlc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb)
static int llc_shdlc_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb)