Lines Matching refs:mypkt
669 struct sk_buff *mypkt; in brcmf_sdiod_recv_buf() local
672 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_recv_buf()
673 if (!mypkt) { in brcmf_sdiod_recv_buf()
679 err = brcmf_sdiod_recv_pkt(sdiodev, mypkt); in brcmf_sdiod_recv_buf()
681 memcpy(buf, mypkt->data, nbytes); in brcmf_sdiod_recv_buf()
683 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_recv_buf()
745 struct sk_buff *mypkt; in brcmf_sdiod_send_buf() local
749 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_send_buf()
750 if (!mypkt) { in brcmf_sdiod_send_buf()
756 memcpy(mypkt->data, buf, nbytes); in brcmf_sdiod_send_buf()
762 mypkt); in brcmf_sdiod_send_buf()
764 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_send_buf()