Home
last modified time | relevance | path

Searched refs:tx_msg (Results 1 – 6 of 6) sorted by relevance

/drivers/net/wimax/i2400m/
Dtx.c405 struct i2400m_msg_hdr *msg_hdr = i2400m->tx_msg; in i2400m_tx_fits()
432 struct i2400m_msg_hdr *tx_msg; in i2400m_tx_new() local
433 BUG_ON(i2400m->tx_msg != NULL); in i2400m_tx_new()
435 tx_msg = i2400m_tx_fifo_push(i2400m, I2400M_TX_PLD_SIZE, 0); in i2400m_tx_new()
436 if (tx_msg == NULL) in i2400m_tx_new()
438 else if (tx_msg == TAIL_FULL) { in i2400m_tx_new()
443 memset(tx_msg, 0, I2400M_TX_PLD_SIZE); in i2400m_tx_new()
444 tx_msg->size = I2400M_TX_PLD_SIZE; in i2400m_tx_new()
446 i2400m->tx_msg = tx_msg; in i2400m_tx_new()
448 tx_msg, (void *) tx_msg - i2400m->tx_buf); in i2400m_tx_new()
[all …]
Dusb-tx.c87 int i2400mu_tx(struct i2400mu *i2400mu, struct i2400m_msg_hdr *tx_msg, in i2400mu_tx() argument
108 tx_msg, tx_msg_size, &sent_size, HZ); in i2400mu_tx()
134 (void *) tx_msg - i2400m->tx_buf, in i2400mu_tx()
162 struct i2400m_msg_hdr *tx_msg; in i2400mu_txd() local
169 tx_msg = NULL; in i2400mu_txd()
173 || (tx_msg = i2400m_tx_msg_get(i2400m, &tx_msg_size))) in i2400mu_txd()
177 WARN_ON(tx_msg == NULL); /* should not happen...*/ in i2400mu_txd()
179 d_dump(5, dev, tx_msg, tx_msg_size); in i2400mu_txd()
181 i2400mu_tx(i2400mu, tx_msg, tx_msg_size); in i2400mu_txd()
Dsdio-tx.c80 struct i2400m_msg_hdr *tx_msg; in i2400ms_tx_submit() local
85 while (NULL != (tx_msg = i2400m_tx_msg_get(i2400m, &tx_msg_size))) { in i2400ms_tx_submit()
87 d_dump(5, dev, tx_msg, tx_msg_size); in i2400ms_tx_submit()
90 result = sdio_memcpy_toio(func, 0, tx_msg, tx_msg_size); in i2400ms_tx_submit()
97 " %d\n", (void *) tx_msg - i2400m->tx_buf, in i2400ms_tx_submit()
Di2400m.h397 struct i2400m_msg_hdr *tx_msg; member
/drivers/net/wireless/
Drayctl.h254 #define TX_BUF_SIZE (2048 - sizeof(struct tx_msg))
574 struct tx_msg { struct
Dray_cs.c110 static int translate_frame(ray_dev_t *local, struct tx_msg __iomem *ptx,
112 static void ray_build_header(ray_dev_t *local, struct tx_msg __iomem *ptx, UCHAR msg_type,
931 struct tx_msg __iomem *ptx; /* Address of xmit buffer in PC space */ in ray_hw_xmit()
998 static int translate_frame(ray_dev_t *local, struct tx_msg __iomem *ptx, unsigned char *data, in translate_frame()
1029 static void ray_build_header(ray_dev_t *local, struct tx_msg __iomem *ptx, UCHAR msg_type, in ray_build_header()
2699 struct tx_msg __iomem *ptx; in build_auth_frame()