Lines Matching refs:rates
15 struct acx_fw_gen_frame_rates *rates;
18 wl1251_debug(DEBUG_ACX, "acx frame rates");
20 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
21 if (!rates)
24 rates->tx_ctrl_frame_rate = ctrl_rate;
25 rates->tx_ctrl_frame_mod = ctrl_mod;
26 rates->tx_mgt_frame_rate = mgt_rate;
27 rates->tx_mgt_frame_mod = mgt_mod;
30 rates, sizeof(*rates));
32 wl1251_error("Failed to set FW rates and modulation");
37 kfree(rates);