| /linux/sound/core/ |
| H A D | device.c | 30 void *device_data, const struct snd_device_ops *ops) in snd_device_new() argument 35 if (snd_BUG_ON(!card || !device_data || !ops)) in snd_device_new() 44 dev->device_data = device_data; in snd_device_new() 82 static struct snd_device *look_for_dev(struct snd_card *card, void *device_data) in look_for_dev() argument 87 if (dev->device_data == device_data) in look_for_dev() 106 void snd_device_disconnect(struct snd_card *card, void *device_data) in snd_device_disconnect() argument 110 if (snd_BUG_ON(!card || !device_data)) in snd_device_disconnect() 112 dev = look_for_dev(card, device_data); in snd_device_disconnect() 117 device_data, __builtin_return_address(0)); in snd_device_disconnect() 130 void snd_device_free(struct snd_card *card, void *device_data) in snd_device_free() argument [all …]
|
| H A D | seq_device.c | 178 struct snd_seq_device *dev = device->device_data; in snd_seq_device_dev_disconnect() 189 struct snd_seq_device *dev = device->device_data; in snd_seq_dev_release() 202 struct snd_seq_device *dev = device->device_data; in snd_seq_device_new()
|
| H A D | hwdep.c | 414 snd_hwdep_free(device->device_data); in snd_hwdep_dev_free() 420 struct snd_hwdep *hwdep = device->device_data; in snd_hwdep_dev_register() 458 struct snd_hwdep *hwdep = device->device_data; in snd_hwdep_dev_disconnect()
|
| H A D | jack.c | 45 struct snd_jack *jack = device->device_data; in snd_jack_dev_disconnect() 67 struct snd_jack *jack = device->device_data; in snd_jack_dev_free() 90 struct snd_jack *jack = device->device_data; in snd_jack_dev_register()
|
| H A D | pcm.c | 871 struct snd_pcm *pcm = device->device_data; in snd_pcm_dev_free() 1050 if (snd_BUG_ON(!device || !device->device_data)) in snd_pcm_dev_register() 1052 pcm = device->device_data; in snd_pcm_dev_register() 1089 struct snd_pcm *pcm = device->device_data; in snd_pcm_dev_disconnect()
|
| H A D | compress_offload.c | 1404 if (snd_BUG_ON(!device || !device->device_data)) in snd_compress_dev_register() 1406 compr = device->device_data; in snd_compress_dev_register() 1426 compr = device->device_data; in snd_compress_dev_disconnect() 1499 compr = device->device_data; in snd_compress_dev_free()
|
| /linux/drivers/crypto/intel/qat/qat_common/ |
| H A D | adf_rl.c | 386 u32 max_val = rl_data->device_data->scale_ref; in is_enough_budget() 525 struct adf_rl_hw_data *device_data = &accel_dev->hw_device->rl_data; in adf_rl_calculate_slice_tokens() local 536 do_div(avail_slice_cycles, device_data->scan_interval); in adf_rl_calculate_slice_tokens() 538 do_div(allocated_tokens, device_data->scale_ref); in adf_rl_calculate_slice_tokens() 546 struct adf_rl_hw_data *device_data = &accel_dev->hw_device->rl_data; in adf_rl_get_num_svc_aes() local 551 return device_data->svc_ae_mask[svc]; in adf_rl_get_num_svc_aes() 557 struct adf_rl_hw_data *device_data = &accel_dev->hw_device->rl_data; in adf_rl_calculate_ae_cycles() local 566 do_div(avail_ae_cycles, device_data->scan_interval); in adf_rl_calculate_ae_cycles() 568 sla_val *= device_data->max_tp[svc_type]; in adf_rl_calculate_ae_cycles() 569 sla_val /= device_data->scale_ref; in adf_rl_calculate_ae_cycles() [all …]
|
| /linux/drivers/input/misc/ |
| H A D | soc_button_array.c | 433 const struct soc_device_data *device_data; in soc_button_probe() local 440 device_data = acpi_device_get_match_data(dev); in soc_button_probe() 441 if (device_data && device_data->check) { in soc_button_probe() 442 error = device_data->check(dev); in soc_button_probe() 447 if (device_data && device_data->button_info) { in soc_button_probe() 448 button_info = device_data->button_info; in soc_button_probe() 484 if (!device_data || !device_data->button_info) in soc_button_probe()
|
| /linux/drivers/hid/bpf/ |
| H A D | hid_bpf_dispatch.c | 35 .data = hdev->bpf.device_data, in dispatch_hid_bpf_device_event() 48 if (!hdev->bpf.device_data) in dispatch_hid_bpf_device_event() 264 if (hdev->bpf.device_data) in hid_bpf_allocate_event_data() 267 return __hid_bpf_allocate_data(hdev, &hdev->bpf.device_data, &hdev->bpf.allocated_data); in hid_bpf_allocate_event_data() 531 from_hid_event_hook = ctx_kern->data && ctx_kern->data == ctx->hid->bpf.device_data; in hid_bpf_try_input_report() 624 kfree(hdev->bpf.device_data); in hid_bpf_disconnect_device() 625 hdev->bpf.device_data = NULL; in hid_bpf_disconnect_device()
|
| /linux/include/sound/ |
| H A D | core.h | 72 void *device_data; /* device structure */ member 322 void *device_data, const struct snd_device_ops *ops); 323 int snd_device_register(struct snd_card *card, void *device_data); 325 void snd_device_disconnect(struct snd_card *card, void *device_data); 327 void snd_device_free(struct snd_card *card, void *device_data);
|
| /linux/sound/hda/common/ |
| H A D | beep.c | 164 struct hda_beep *beep = device->device_data; in beep_dev_register() 175 struct hda_beep *beep = device->device_data; in beep_dev_disconnect() 188 struct hda_beep *beep = device->device_data; in beep_dev_free()
|
| /linux/drivers/scsi/lpfc/ |
| H A D | lpfc_mem.c | 240 struct lpfc_device_data *device_data; in lpfc_mem_free() local 284 device_data = list_first_entry(&phba->luns, in lpfc_mem_free() 287 list_del(&device_data->listentry); in lpfc_mem_free() 288 mempool_free(device_data, phba->device_data_mem_pool); in lpfc_mem_free()
|
| H A D | lpfc_scsi.c | 6263 struct lpfc_device_data *device_data; in lpfc_sdev_init() local 6279 device_data = __lpfc_get_device_data(phba, in lpfc_sdev_init() 6284 if (!device_data) { in lpfc_sdev_init() 6286 device_data = lpfc_create_device_data(phba, in lpfc_sdev_init() 6292 if (!device_data) in lpfc_sdev_init() 6295 list_add_tail(&device_data->listentry, &phba->luns); in lpfc_sdev_init() 6297 device_data->rport_data = rport->dd_data; in lpfc_sdev_init() 6298 device_data->available = true; in lpfc_sdev_init() 6300 sdev->hostdata = device_data; in lpfc_sdev_init() 6398 struct lpfc_device_data *device_data = sdev->hostdata; in lpfc_sdev_destroy() local [all …]
|
| /linux/sound/aoa/ |
| H A D | aoa.h | 118 void *device_data, const struct snd_device_ops *ops);
|
| /linux/sound/hda/controllers/ |
| H A D | acpi.c | 42 struct azx *chip = device->device_data; in hda_acpi_dev_disconnect() 50 struct azx *azx = device->device_data; in hda_acpi_dev_free()
|
| H A D | cix-ipbloq.c | 39 struct azx *chip = device->device_data; in cix_ipbloq_hda_dev_disconnect() 48 struct azx *chip = device->device_data; in cix_ipbloq_hda_dev_free()
|
| H A D | tegra.c | 219 struct azx *chip = device->device_data; in hda_tegra_dev_disconnect() 230 struct azx *chip = device->device_data; in hda_tegra_dev_free()
|
| /linux/drivers/gpu/drm/imagination/ |
| H A D | pvr_power.c | 387 err = pvr_dev->device_data->pwr_ops->power_off(pvr_dev); in pvr_power_device_suspend() 407 err = pvr_dev->device_data->pwr_ops->power_on(pvr_dev); in pvr_power_device_resume() 422 pvr_dev->device_data->pwr_ops->power_off(pvr_dev); in pvr_power_device_resume()
|
| H A D | pvr_device.c | 765 pvr_dev->device_data = of_device_get_match_data(dev); in pvr_device_init() 772 err = pvr_dev->device_data->pwr_ops->init(pvr_dev); in pvr_device_init()
|
| /linux/include/linux/ |
| H A D | dmi.h | 86 void *device_data; /* Type specific data */ member
|
| H A D | hid_bpf.h | 188 u8 *device_data; /* allocated when a bpf program of type member
|
| /linux/drivers/char/ipmi/ |
| H A D | ipmi_dmi.c | 219 dmi_decode_ipmi((const struct dmi_header *) dev->device_data); in scan_for_dmi_ipmi()
|
| /linux/drivers/input/touchscreen/ |
| H A D | bu21013_ts.c | 236 static irqreturn_t bu21013_gpio_irq(int irq, void *device_data) in bu21013_gpio_irq() argument 238 struct bu21013_ts *ts = device_data; in bu21013_gpio_irq()
|
| /linux/drivers/pci/ |
| H A D | pci-label.c | 70 donboard = dmi->device_data; in find_smbios_instance_string()
|
| /linux/sound/pcmcia/pdaudiocf/ |
| H A D | pdaudiocf.c | 72 struct snd_pdacf *chip = device->device_data; in snd_pdacf_dev_free()
|