Lines Matching refs:txlen
568 int txlen = 0, tx_blocks = 0, count = 0;
649 txlen = len;
660 "len = 0x%04X, txlen = %d", len, txlen);
662 /* Set txlen to 0 so as to resend from same offset */
663 txlen = 0;
668 if (firmwarelen - offset < txlen)
669 txlen = firmwarelen - offset;
671 tx_blocks = DIV_ROUND_UP(txlen, blksz_dl);
673 memcpy(fwbuf, &firmware[offset], txlen);
688 offset += txlen;