Lines Matching refs:params
238 struct acx_data_path_params *params;
241 wl1251_debug(DEBUG_ACX, "acx data path params");
243 params = kzalloc(sizeof(*params), GFP_KERNEL);
244 if (!params)
247 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
248 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
250 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
251 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
253 params->tx_complete_threshold = 1;
255 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
257 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
260 params, sizeof(*params));
278 kfree(params);