num_pls          1160 drivers/net/wimax/i2400m/rx.c 	if (msg_hdr->num_pls == 0) {
num_pls          1164 drivers/net/wimax/i2400m/rx.c 	if (le16_to_cpu(msg_hdr->num_pls) > I2400M_MAX_PLS_IN_MSG) {
num_pls          1251 drivers/net/wimax/i2400m/rx.c 	unsigned num_pls, single_last, skb_len;
num_pls          1261 drivers/net/wimax/i2400m/rx.c 	num_pls = le16_to_cpu(msg_hdr->num_pls);
num_pls          1263 drivers/net/wimax/i2400m/rx.c 	pl_itr = struct_size(msg_hdr, pld, num_pls);
num_pls          1268 drivers/net/wimax/i2400m/rx.c 			skb_len, num_pls, sizeof(msg_hdr->pld[0]), pl_itr);
num_pls          1272 drivers/net/wimax/i2400m/rx.c 	for (i = 0; i < num_pls; i++) {
num_pls          1279 drivers/net/wimax/i2400m/rx.c 		single_last = num_pls == 1 || i == num_pls - 1;
num_pls           538 drivers/net/wimax/i2400m/tx.c 	return le16_to_cpu(msg_hdr->num_pls) < I2400M_TX_PLD_MAX;
num_pls           620 drivers/net/wimax/i2400m/tx.c 	unsigned num_pls;
num_pls           624 drivers/net/wimax/i2400m/tx.c 	num_pls = le16_to_cpu(tx_msg->num_pls);
num_pls           628 drivers/net/wimax/i2400m/tx.c 	if (num_pls == 0) {
num_pls           643 drivers/net/wimax/i2400m/tx.c 	hdr_size = struct_size(tx_msg, pld, le16_to_cpu(tx_msg->num_pls));
num_pls           742 drivers/net/wimax/i2400m/tx.c 			  || (is_singleton && i2400m->tx_msg->num_pls != 0))) {
num_pls           745 drivers/net/wimax/i2400m/tx.c 			 is_singleton, i2400m->tx_msg->num_pls);
num_pls           779 drivers/net/wimax/i2400m/tx.c 		unsigned num_pls = le16_to_cpu(tx_msg->num_pls);
num_pls           782 drivers/net/wimax/i2400m/tx.c 		i2400m_pld_set(&tx_msg->pld[num_pls], buf_len, pl_type);
num_pls           784 drivers/net/wimax/i2400m/tx.c 			 le32_to_cpu(tx_msg->pld[num_pls].val),
num_pls           786 drivers/net/wimax/i2400m/tx.c 		tx_msg->num_pls = le16_to_cpu(num_pls+1);
num_pls           789 drivers/net/wimax/i2400m/tx.c 			padded_len, tx_msg->size, num_pls+1);
num_pls           793 drivers/net/wimax/i2400m/tx.c 			 num_pls+1, ptr - i2400m->tx_buf, buf_len, padded_len);
num_pls           866 drivers/net/wimax/i2400m/tx.c 	if (tx_msg->num_pls == 0) {		/* No payloads? */
num_pls           897 drivers/net/wimax/i2400m/tx.c 	pls = le32_to_cpu(tx_msg_moved->num_pls);
num_pls           318 include/uapi/linux/wimax/i2400m.h 	__le16 num_pls;