Home
last modified time | relevance | path

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

/linux-6.6.21/drivers/net/ethernet/sfc/
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()
Def100_netdev.h21 int ef100_probe_netdev(struct efx_probe_data *probe_data);
22 void ef100_remove_netdev(struct efx_probe_data *probe_data);
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()
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 …]
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()
/linux-6.6.21/drivers/tty/serial/8250/
D8250_fintek.c449 struct fintek_8250 probe_data; in fintek_8250_probe() local
451 if (probe_setup_port(&probe_data, uart)) in fintek_8250_probe()
458 memcpy(pdata, &probe_data, sizeof(probe_data)); in fintek_8250_probe()
/linux-6.6.21/arch/x86/include/asm/
Dplatform_sst_audio.h127 const struct sst_info *probe_data; member
/linux-6.6.21/sound/soc/intel/atom/sst/
Dsst_acpi.c129 .probe_data = &byt_fwparse_info,
141 .probe_data = &byt_fwparse_info,
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()
/linux-6.6.21/drivers/net/wireless/intel/iwlwifi/mvm/
Dmld-mac80211.c114 struct iwl_probe_resp_data *probe_data; in iwl_mvm_mld_mac_remove_interface() local
175 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_mld_mac_remove_interface()
178 if (probe_data) in iwl_mvm_mld_mac_remove_interface()
179 kfree_rcu(probe_data, rcu_head); in iwl_mvm_mld_mac_remove_interface()
Dmac80211.c1026 struct iwl_probe_resp_data *probe_data; in iwl_mvm_cleanup_iterator() local
1045 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_cleanup_iterator()
1047 if (probe_data) in iwl_mvm_cleanup_iterator()
1048 kfree_rcu(probe_data, rcu_head); in iwl_mvm_cleanup_iterator()
1658 struct iwl_probe_resp_data *probe_data; in iwl_mvm_mac_remove_interface_common() local
1673 probe_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data, in iwl_mvm_mac_remove_interface_common()
1676 if (probe_data) in iwl_mvm_mac_remove_interface_common()
1677 kfree_rcu(probe_data, rcu_head); in iwl_mvm_mac_remove_interface_common()
/linux-6.6.21/sound/synth/emux/
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