| /linux/drivers/usb/dwc3/ |
| H A D | dwc3-generic-plat.c | 75 struct dwc3_probe_data probe_data = {}; in dwc3_generic_probe() local 118 probe_data.dwc = &dwc3g->dwc; in dwc3_generic_probe() 119 probe_data.res = res; in dwc3_generic_probe() 120 probe_data.ignore_clocks_and_resets = true; in dwc3_generic_probe() 124 probe_data.properties = DWC3_DEFAULT_PROPERTIES; in dwc3_generic_probe() 128 probe_data.properties = plat_config->properties; in dwc3_generic_probe() 137 ret = dwc3_core_probe(&probe_data); in dwc3_generic_probe()
|
| H A D | dwc3-apple.c | 173 struct dwc3_probe_data probe_data = {}; in dwc3_apple_core_probe() local 180 probe_data.dwc = &appledwc->dwc; in dwc3_apple_core_probe() 181 probe_data.res = appledwc->mmio_resource; in dwc3_apple_core_probe() 182 probe_data.ignore_clocks_and_resets = true; in dwc3_apple_core_probe() 183 probe_data.skip_core_init_mode = true; in dwc3_apple_core_probe() 184 probe_data.properties = DWC3_DEFAULT_PROPERTIES; in dwc3_apple_core_probe() 186 ret = dwc3_core_probe(&probe_data); in dwc3_apple_core_probe()
|
| H A D | dwc3-qcom.c | 612 struct dwc3_probe_data probe_data = {}; in dwc3_qcom_probe() local 704 probe_data.dwc = &qcom->dwc; in dwc3_qcom_probe() 705 probe_data.res = &res; in dwc3_qcom_probe() 706 probe_data.ignore_clocks_and_resets = true; in dwc3_qcom_probe() 707 probe_data.properties = DWC3_DEFAULT_PROPERTIES; in dwc3_qcom_probe() 708 ret = dwc3_core_probe(&probe_data); in dwc3_qcom_probe()
|
| H A D | core.c | 2349 struct dwc3_probe_data probe_data = {}; in dwc3_probe() local 2366 probe_data.dwc = dwc; in dwc3_probe() 2367 probe_data.res = res; in dwc3_probe() 2368 probe_data.properties = DWC3_DEFAULT_PROPERTIES; in dwc3_probe() 2370 return dwc3_core_probe(&probe_data); in dwc3_probe()
|
| /linux/drivers/net/ethernet/sfc/ |
| H A D | ef100.c | 426 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 D | ef100_netdev.h | 21 int ef100_probe_netdev(struct efx_probe_data *probe_data); 22 void ef100_remove_netdev(struct efx_probe_data *probe_data);
|
| H A D | ef100_netdev.c | 383 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 D | efx.c | 958 struct efx_probe_data *probe_data; in efx_pci_remove() local 989 probe_data = container_of(efx, struct efx_probe_data, efx); in efx_pci_remove() 990 kfree(probe_data); in efx_pci_remove() 1152 struct efx_probe_data *probe_data, **probe_ptr; in efx_pci_probe() local 1158 probe_data = kzalloc(sizeof(*probe_data), GFP_KERNEL); in efx_pci_probe() 1159 if (!probe_data) in efx_pci_probe() 1161 probe_data->pci_dev = pci_dev; in efx_pci_probe() 1162 efx = &probe_data->efx; in efx_pci_probe() 1165 net_dev = alloc_etherdev_mq(sizeof(probe_data), EFX_MAX_CORE_TX_QUEUES); in efx_pci_probe() 1171 *probe_ptr = probe_data; in efx_pci_probe() [all …]
|
| H A D | net_driver.h | 1213 struct efx_probe_data *probe_data = *probe_ptr; in efx_netdev_priv() local 1215 return &probe_data->efx; in efx_netdev_priv()
|
| /linux/drivers/tty/serial/8250/ |
| H A D | 8250_fintek.c | 461 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()
|
| /linux/drivers/gpio/ |
| H A D | gpio-aggregator.c | 45 struct dev_sync_probe_data probe_data; member 138 return aggr->probe_data.pdev && platform_get_drvdata(aggr->probe_data.pdev); in gpio_aggregator_is_active() 146 return aggr->probe_data.pdev && !platform_get_drvdata(aggr->probe_data.pdev); in gpio_aggregator_is_activating() 966 ret = dev_sync_probe_register(&aggr->probe_data, &pdevinfo); in gpio_aggregator_activate() 985 dev_sync_probe_unregister(&aggr->probe_data); in gpio_aggregator_deactivate() 1149 pdev = aggr->probe_data.pdev; in gpio_aggregator_device_dev_name_show() 1326 dev_sync_probe_init(&aggr->probe_data); in gpio_aggregator_make_group() 1480 dev_sync_probe_init(&aggr->probe_data); in gpio_aggregator_new_device_store() 1500 aggr->probe_data.pdev = pdev; in gpio_aggregator_new_device_store()
|
| /linux/arch/x86/include/asm/ |
| H A D | platform_sst_audio.h | 127 const struct sst_info *probe_data; member
|
| /linux/drivers/net/wireless/intel/iwlwifi/mld/ |
| H A D | link.c | 393 struct iwl_probe_resp_data *probe_data; in iwl_mld_deactivate_link() local 406 probe_data = wiphy_dereference(mld->wiphy, mld_link->probe_resp_data); in iwl_mld_deactivate_link() 408 if (probe_data) in iwl_mld_deactivate_link() 409 kfree_rcu(probe_data, rcu_head); in iwl_mld_deactivate_link()
|
| /linux/sound/soc/intel/atom/sst/ |
| H A D | sst_acpi.c | 152 .probe_data = &byt_fwparse_info, 164 .probe_data = &byt_fwparse_info,
|