Home
last modified time | relevance | path

Searched refs:cfg_data (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/dev/bxe/
H A Decore_sp.c2998 union ecore_mcast_config_data *cfg_data, in ecore_mcast_set_one_rule_e2() argument
3016 bin = ecore_mcast_bin_from_mac(cfg_data->mac); in ecore_mcast_set_one_rule_e2()
3031 bin = cfg_data->bin; in ecore_mcast_set_one_rule_e2()
3063 union ecore_mcast_config_data cfg_data = {NULL}; in ecore_mcast_handle_restore_cmd_e2() local
3069 cfg_data.bin = (uint8_t)cur_bin; in ecore_mcast_handle_restore_cmd_e2()
3070 o->set_one_rule(sc, o, cnt, &cfg_data, in ecore_mcast_handle_restore_cmd_e2()
3095 union ecore_mcast_config_data cfg_data = {NULL}; in ecore_mcast_hdl_pending_add_e2() local
3100 cfg_data.mac = &pmac_pos->mac[0]; in ecore_mcast_hdl_pending_add_e2()
3101 o->set_one_rule(sc, o, cnt, &cfg_data, cmd_pos->type); in ecore_mcast_hdl_pending_add_e2()
3220 union ecore_mcast_config_data cfg_data = {NULL}; in ecore_mcast_hdl_add() local
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mld/
H A Dscan.c1219 struct iwl_scan_offload_profile_cfg_data *cfg_data; in iwl_mld_config_sched_scan_profiles() local
1241 cfg_data = &profile_cfg->data; in iwl_mld_config_sched_scan_profiles()
1242 cfg_data->num_profiles = req->n_match_sets; in iwl_mld_config_sched_scan_profiles()
1243 cfg_data->active_clients = SCAN_CLIENT_SCHED_SCAN; in iwl_mld_config_sched_scan_profiles()
1244 cfg_data->pass_match = SCAN_CLIENT_SCHED_SCAN; in iwl_mld_config_sched_scan_profiles()
1245 cfg_data->match_notify = SCAN_CLIENT_SCHED_SCAN; in iwl_mld_config_sched_scan_profiles()
1248 cfg_data->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN; in iwl_mld_config_sched_scan_profiles()
/freebsd/sys/dev/cxgbe/common/
H A Dcommon.h707 int t4_load_bootcfg(struct adapter *adapter, const u8 *cfg_data, unsigned int size);
712 int t4_load_cfg(struct adapter *adapter, const u8 *cfg_data, unsigned int size);
H A Dt4_hw.c12521 int t4_load_cfg(struct adapter *adap, const u8 *cfg_data, unsigned int size) in t4_load_cfg() argument
12551 ret = t4_write_flash(adap, addr, n, cfg_data, 1); in t4_load_cfg()
12555 cfg_data += SF_PAGE_SIZE; in t4_load_cfg()
12894 int t4_load_bootcfg(struct adapter *adap,const u8 *cfg_data, unsigned int size) in t4_load_bootcfg() argument
12925 ret = t4_write_flash(adap, addr, n, cfg_data, 0); in t4_load_bootcfg()
12929 cfg_data += SF_PAGE_SIZE; in t4_load_bootcfg()
/freebsd/sys/dev/cxgbe/
H A Dt4_main.c12557 uint8_t *cfg_data = NULL; in load_cfg() local
12574 cfg_data = malloc(cfg->len, M_CXGBE, M_WAITOK); in load_cfg()
12576 rc = copyin(cfg->data, cfg_data, cfg->len); in load_cfg()
12578 rc = -t4_load_cfg(sc, cfg_data, cfg->len); in load_cfg()
12580 free(cfg_data, M_CXGBE); in load_cfg()