Home
last modified time | relevance | path

Searched refs:probe_data (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/drivers/net/ethernet/sfc/
H A Def100.c426 struct efx_probe_data *probe_data; in ef100_pci_remove() local
431 probe_data = container_of(efx, struct efx_probe_data, efx); in ef100_pci_remove()
432 ef100_remove_netdev(probe_data); in ef100_pci_remove()
444 kfree(probe_data); in ef100_pci_remove()
451 struct efx_probe_data *probe_data; in ef100_pci_probe() local
456 probe_data = kzalloc(sizeof(*probe_data), GFP_KERNEL); in ef100_pci_probe()
457 if (!probe_data) in ef100_pci_probe()
459 probe_data->pci_dev = pci_dev; in ef100_pci_probe()
460 efx = &probe_data->efx; in ef100_pci_probe()
508 rc = ef100_probe_netdev(probe_data); in ef100_pci_probe()
H A Def100_netdev.h21 int ef100_probe_netdev(struct efx_probe_data *probe_data);
22 void ef100_remove_netdev(struct efx_probe_data *probe_data);
H A Def100_netdev.c383 void ef100_remove_netdev(struct efx_probe_data *probe_data) in ef100_remove_netdev() argument
385 struct efx_nic *efx = &probe_data->efx; in ef100_remove_netdev()
423 int ef100_probe_netdev(struct efx_probe_data *probe_data) in ef100_probe_netdev() argument
425 struct efx_nic *efx = &probe_data->efx; in ef100_probe_netdev()
438 net_dev = alloc_etherdev_mq(sizeof(probe_data), EFX_MAX_CORE_TX_QUEUES); in ef100_probe_netdev()
442 *probe_ptr = probe_data; in ef100_probe_netdev()
H A Defx.c862 struct efx_probe_data *probe_data; in efx_pci_remove() local
893 probe_data = container_of(efx, struct efx_probe_data, efx); in efx_pci_remove()
894 kfree(probe_data); in efx_pci_remove()
1056 struct efx_probe_data *probe_data, **probe_ptr; in efx_pci_probe() local
1062 probe_data = kzalloc(sizeof(*probe_data), GFP_KERNEL); in efx_pci_probe()
1063 if (!probe_data) in efx_pci_probe()
1065 probe_data->pci_dev = pci_dev; in efx_pci_probe()
1066 efx = &probe_data->efx; in efx_pci_probe()
1069 net_dev = alloc_etherdev_mq(sizeof(probe_data), EFX_MAX_CORE_TX_QUEUES); in efx_pci_probe()
1075 *probe_ptr = probe_data; in efx_pci_probe()
[all …]
H A Dnet_driver.h1176 struct efx_probe_data *probe_data = *probe_ptr; in efx_netdev_priv() local
1178 return &probe_data->efx; in efx_netdev_priv()
/openbmc/linux/drivers/tty/serial/8250/
H A D8250_fintek.c461 struct fintek_8250 probe_data; in fintek_8250_probe() local
463 if (probe_setup_port(&probe_data, uart)) in fintek_8250_probe()
470 memcpy(pdata, &probe_data, sizeof(probe_data)); in fintek_8250_probe()
/openbmc/linux/arch/x86/include/asm/
H A Dplatform_sst_audio.h127 const struct sst_info *probe_data; member
/openbmc/linux/sound/soc/intel/atom/sst/
H A Dsst_acpi.c151 .probe_data = &byt_fwparse_info,
163 .probe_data = &byt_fwparse_info,
H A Dsst.c277 if (!ctx->pdata->probe_data) in sst_context_init()
280 memcpy(&ctx->info, ctx->pdata->probe_data, sizeof(ctx->info)); in sst_context_init()
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dmld-mac80211.c122 struct iwl_probe_resp_data *probe_data; in iwl_mvm_mld_mac_remove_interface() local
183 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_mld_mac_remove_interface()
186 if (probe_data) in iwl_mvm_mld_mac_remove_interface()
187 kfree_rcu(probe_data, rcu_head); in iwl_mvm_mld_mac_remove_interface()
H A Dmac80211.c1018 struct iwl_probe_resp_data *probe_data; in iwl_mvm_cleanup_iterator() local
1038 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_cleanup_iterator()
1040 if (probe_data) in iwl_mvm_cleanup_iterator()
1041 kfree_rcu(probe_data, rcu_head); in iwl_mvm_cleanup_iterator()
1703 struct iwl_probe_resp_data *probe_data; in iwl_mvm_mac_remove_interface_common() local
1718 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_mac_remove_interface_common()
1721 if (probe_data) in iwl_mvm_mac_remove_interface_common()
1722 kfree_rcu(probe_data, rcu_head); in iwl_mvm_mac_remove_interface_common()
/openbmc/linux/sound/synth/emux/
H A Dsoundfont.c29 static int probe_data(struct snd_sf_list *sflist, int sample_id);
182 rc = probe_data(sflist, patch.optarg); in snd_soundfont_load()
321 probe_data(struct snd_sf_list *sflist, int sample_id) in probe_data() function