Lines Matching refs:mypkt
670 struct sk_buff *mypkt; in brcmf_sdiod_recv_buf() local
673 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_recv_buf()
674 if (!mypkt) { in brcmf_sdiod_recv_buf()
680 err = brcmf_sdiod_recv_pkt(sdiodev, mypkt); in brcmf_sdiod_recv_buf()
682 memcpy(buf, mypkt->data, nbytes); in brcmf_sdiod_recv_buf()
684 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_recv_buf()
746 struct sk_buff *mypkt; in brcmf_sdiod_send_buf() local
750 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_send_buf()
751 if (!mypkt) { in brcmf_sdiod_send_buf()
757 memcpy(mypkt->data, buf, nbytes); in brcmf_sdiod_send_buf()
763 mypkt); in brcmf_sdiod_send_buf()
765 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_send_buf()