Lines Matching refs:mypkt
521 struct sk_buff *mypkt; in brcmf_sdiod_recv_buf() local
524 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_recv_buf()
525 if (!mypkt) { in brcmf_sdiod_recv_buf()
531 err = brcmf_sdiod_recv_pkt(sdiodev, mypkt); in brcmf_sdiod_recv_buf()
533 memcpy(buf, mypkt->data, nbytes); in brcmf_sdiod_recv_buf()
535 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_recv_buf()
604 struct sk_buff *mypkt; in brcmf_sdiod_send_buf() local
608 mypkt = brcmu_pkt_buf_get_skb(nbytes); in brcmf_sdiod_send_buf()
610 if (!mypkt) { in brcmf_sdiod_send_buf()
616 memcpy(mypkt->data, buf, nbytes); in brcmf_sdiod_send_buf()
625 err = brcmf_sdiod_skbuff_write(sdiodev, sdiodev->func2, addr, mypkt); in brcmf_sdiod_send_buf()
627 brcmu_pkt_buf_free_skb(mypkt); in brcmf_sdiod_send_buf()