Lines Matching defs:sc

1958 	struct wmi_start_scan_cmd *sc;
1967 skb = ath6kl_wmi_get_new_buf(struct_size(sc, ch_list, num_chan));
1971 sc = (struct wmi_start_scan_cmd *) skb->data;
1972 sc->scan_type = scan_type;
1973 sc->force_fg_scan = cpu_to_le32(force_fgscan);
1974 sc->is_legacy = cpu_to_le32(is_legacy);
1975 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1976 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1977 sc->num_ch = num_chan;
1980 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
2001 struct wmi_begin_scan_cmd *sc;
2023 skb = ath6kl_wmi_get_new_buf(struct_size(sc, ch_list, num_chan));
2027 sc = (struct wmi_begin_scan_cmd *) skb->data;
2028 sc->scan_type = scan_type;
2029 sc->force_fg_scan = cpu_to_le32(force_fgscan);
2030 sc->is_legacy = cpu_to_le32(is_legacy);
2031 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
2032 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
2033 sc->no_cck = cpu_to_le32(no_cck);
2034 sc->num_ch = num_chan;
2046 supp_rates = sc->supp_rates[band].rates;
2055 sc->supp_rates[band].nrates = num_rates;
2059 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
2070 struct wmi_enable_sched_scan_cmd *sc;
2073 skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
2079 sc = (struct wmi_enable_sched_scan_cmd *) skb->data;
2080 sc->enable = enable ? 1 : 0;
2097 struct wmi_scan_params_cmd *sc;
2100 skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
2104 sc = (struct wmi_scan_params_cmd *) skb->data;
2105 sc->fg_start_period = cpu_to_le16(fg_start_sec);
2106 sc->fg_end_period = cpu_to_le16(fg_end_sec);
2107 sc->bg_period = cpu_to_le16(bg_sec);
2108 sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec);
2109 sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec);
2110 sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec);
2111 sc->short_scan_ratio = short_scan_ratio;
2112 sc->scan_ctrl_flags = scan_ctrl_flag;
2113 sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time);
2114 sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid);