/linux-4.1.27/drivers/crypto/ux500/hash/ |
D | hash_core.c | 99 static void hash_messagepad(struct hash_device_data *device_data, 107 static void release_hash_device(struct hash_device_data *device_data) in release_hash_device() argument 109 spin_lock(&device_data->ctx_lock); in release_hash_device() 110 device_data->current_ctx->device = NULL; in release_hash_device() 111 device_data->current_ctx = NULL; in release_hash_device() 112 spin_unlock(&device_data->ctx_lock); in release_hash_device() 121 static void hash_dma_setup_channel(struct hash_device_data *device_data, in hash_dma_setup_channel() argument 127 .dst_addr = device_data->phybase + HASH_DMA_FIFO, in hash_dma_setup_channel() 132 dma_cap_zero(device_data->dma.mask); in hash_dma_setup_channel() 133 dma_cap_set(DMA_SLAVE, device_data->dma.mask); in hash_dma_setup_channel() [all …]
|
D | hash_alg.h | 108 #define HASH_SET_DIN(val, len) writesl(&device_data->base->din, (val), (len)) 112 &device_data->base->cr, \ 118 &device_data->base->cr, \ 123 &device_data->base->str, \ 128 &device_data->base->str, \ 380 int hash_check_hw(struct hash_device_data *device_data); 382 int hash_setconfiguration(struct hash_device_data *device_data, 385 void hash_begin(struct hash_device_data *device_data, struct hash_ctx *ctx); 387 void hash_get_digest(struct hash_device_data *device_data, 392 int hash_save_state(struct hash_device_data *device_data, [all …]
|
/linux-4.1.27/drivers/crypto/ux500/cryp/ |
D | cryp.c | 21 void cryp_wait_until_done(struct cryp_device_data *device_data) in cryp_wait_until_done() argument 23 while (cryp_is_logic_busy(device_data)) in cryp_wait_until_done() 31 int cryp_check(struct cryp_device_data *device_data) in cryp_check() argument 35 if (NULL == device_data) in cryp_check() 38 peripheralid2 = readl_relaxed(&device_data->base->periphId2); in cryp_check() 45 readl_relaxed(&device_data->base->periphId0)) in cryp_check() 47 readl_relaxed(&device_data->base->periphId1)) in cryp_check() 49 readl_relaxed(&device_data->base->periphId3)) in cryp_check() 51 readl_relaxed(&device_data->base->pcellId0)) in cryp_check() 53 readl_relaxed(&device_data->base->pcellId1)) in cryp_check() [all …]
|
D | cryp_core.c | 194 struct cryp_device_data *device_data; in cryp_interrupt_handler() local 202 device_data = (struct cryp_device_data *)param; in cryp_interrupt_handler() 204 ctx = device_data->current_ctx; in cryp_interrupt_handler() 212 cryp_pending_irq_src(device_data, CRYP_IRQ_SRC_OUTPUT_FIFO) ? in cryp_interrupt_handler() 215 if (cryp_pending_irq_src(device_data, in cryp_interrupt_handler() 220 readsl(&device_data->base->dout, ctx->outdata, count); in cryp_interrupt_handler() 225 cryp_disable_irq_src(device_data, in cryp_interrupt_handler() 229 } else if (cryp_pending_irq_src(device_data, in cryp_interrupt_handler() 234 writesl(&device_data->base->din, ctx->indata, count); in cryp_interrupt_handler() 240 cryp_disable_irq_src(device_data, in cryp_interrupt_handler() [all …]
|
D | cryp_irq.c | 20 void cryp_enable_irq_src(struct cryp_device_data *device_data, u32 irq_src) in cryp_enable_irq_src() argument 24 dev_dbg(device_data->dev, "[%s]", __func__); in cryp_enable_irq_src() 26 i = readl_relaxed(&device_data->base->imsc); in cryp_enable_irq_src() 28 writel_relaxed(i, &device_data->base->imsc); in cryp_enable_irq_src() 31 void cryp_disable_irq_src(struct cryp_device_data *device_data, u32 irq_src) in cryp_disable_irq_src() argument 35 dev_dbg(device_data->dev, "[%s]", __func__); in cryp_disable_irq_src() 37 i = readl_relaxed(&device_data->base->imsc); in cryp_disable_irq_src() 39 writel_relaxed(i, &device_data->base->imsc); in cryp_disable_irq_src() 42 bool cryp_pending_irq_src(struct cryp_device_data *device_data, u32 irq_src) in cryp_pending_irq_src() argument 44 return (readl_relaxed(&device_data->base->mis) & irq_src) > 0; in cryp_pending_irq_src()
|
D | cryp.h | 253 void cryp_wait_until_done(struct cryp_device_data *device_data); 257 int cryp_check(struct cryp_device_data *device_data); 259 void cryp_activity(struct cryp_device_data *device_data, 262 void cryp_flush_inoutfifo(struct cryp_device_data *device_data); 264 int cryp_set_configuration(struct cryp_device_data *device_data, 268 void cryp_configure_for_dma(struct cryp_device_data *device_data, 271 int cryp_configure_key_values(struct cryp_device_data *device_data, 275 int cryp_configure_init_vector(struct cryp_device_data *device_data, 281 int cryp_configure_protection(struct cryp_device_data *device_data, 285 void cryp_save_device_context(struct cryp_device_data *device_data, [all …]
|
D | cryp_irq.h | 25 void cryp_enable_irq_src(struct cryp_device_data *device_data, u32 irq_src); 27 void cryp_disable_irq_src(struct cryp_device_data *device_data, u32 irq_src); 29 bool cryp_pending_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
/linux-4.1.27/sound/core/ |
D | device.c | 45 void *device_data, struct snd_device_ops *ops) in snd_device_new() argument 50 if (snd_BUG_ON(!card || !device_data || !ops)) in snd_device_new() 59 dev->device_data = device_data; in snd_device_new() 97 static struct snd_device *look_for_dev(struct snd_card *card, void *device_data) in look_for_dev() argument 102 if (dev->device_data == device_data) in look_for_dev() 121 void snd_device_disconnect(struct snd_card *card, void *device_data) in snd_device_disconnect() argument 125 if (snd_BUG_ON(!card || !device_data)) in snd_device_disconnect() 127 dev = look_for_dev(card, device_data); in snd_device_disconnect() 132 device_data, __builtin_return_address(0)); in snd_device_disconnect() 145 void snd_device_free(struct snd_card *card, void *device_data) in snd_device_free() argument [all …]
|
D | jack.c | 39 struct snd_jack *jack = device->device_data; in snd_jack_dev_disconnect() 56 struct snd_jack *jack = device->device_data; in snd_jack_dev_free() 71 struct snd_jack *jack = device->device_data; in snd_jack_dev_register()
|
D | hwdep.c | 412 struct snd_hwdep *hwdep = device->device_data; in snd_hwdep_dev_free() 423 struct snd_hwdep *hwdep = device->device_data; in snd_hwdep_dev_register() 465 struct snd_hwdep *hwdep = device->device_data; in snd_hwdep_dev_disconnect()
|
D | compress_offload.c | 878 if (snd_BUG_ON(!device || !device->device_data)) in snd_compress_dev_register() 880 compr = device->device_data; in snd_compress_dev_register() 900 compr = device->device_data; in snd_compress_dev_disconnect() 909 compr = device->device_data; in snd_compress_dev_free()
|
D | pcm.c | 899 struct snd_pcm *pcm = device->device_data; in snd_pcm_dev_free() 1069 if (snd_BUG_ON(!device || !device->device_data)) in snd_pcm_dev_register() 1071 pcm = device->device_data; in snd_pcm_dev_register() 1114 struct snd_pcm *pcm = device->device_data; in snd_pcm_dev_disconnect()
|
D | info.c | 856 struct snd_info_entry *entry = device->device_data; in snd_info_dev_free_entry() 863 struct snd_info_entry *entry = device->device_data; in snd_info_dev_register_entry()
|
D | timer.c | 888 struct snd_timer *timer = device->device_data; in snd_timer_dev_free() 894 struct snd_timer *timer = dev->device_data; in snd_timer_dev_register() 939 struct snd_timer *timer = device->device_data; in snd_timer_dev_disconnect() 1015 dev.device_data = timer; in snd_timer_global_register()
|
D | control.c | 1751 struct snd_card *card = device->device_data; in snd_ctl_dev_register() 1762 struct snd_card *card = device->device_data; in snd_ctl_dev_disconnect() 1780 struct snd_card *card = device->device_data; in snd_ctl_dev_free()
|
D | rawmidi.c | 1609 struct snd_rawmidi *rmidi = device->device_data; in snd_rawmidi_dev_free() 1626 struct snd_rawmidi *rmidi = device->device_data; in snd_rawmidi_dev_register() 1707 struct snd_rawmidi *rmidi = device->device_data; in snd_rawmidi_dev_disconnect()
|
/linux-4.1.27/include/linux/ |
D | vfio.h | 35 int (*open)(void *device_data); 36 void (*release)(void *device_data); 37 ssize_t (*read)(void *device_data, char __user *buf, 39 ssize_t (*write)(void *device_data, const char __user *buf, 41 long (*ioctl)(void *device_data, unsigned int cmd, 43 int (*mmap)(void *device_data, struct vm_area_struct *vma); 44 void (*request)(void *device_data, unsigned int count); 49 void *device_data);
|
D | dmi.h | 83 void *device_data; /* Type specific data */ member
|
/linux-4.1.27/drivers/vfio/platform/ |
D | vfio_platform_common.c | 96 static void vfio_platform_release(void *device_data) in vfio_platform_release() argument 98 struct vfio_platform_device *vdev = device_data; in vfio_platform_release() 112 static int vfio_platform_open(void *device_data) in vfio_platform_open() argument 114 struct vfio_platform_device *vdev = device_data; in vfio_platform_open() 145 static long vfio_platform_ioctl(void *device_data, in vfio_platform_ioctl() argument 148 struct vfio_platform_device *vdev = device_data; in vfio_platform_ioctl() 319 static ssize_t vfio_platform_read(void *device_data, char __user *buf, in vfio_platform_read() argument 322 struct vfio_platform_device *vdev = device_data; in vfio_platform_read() 395 static ssize_t vfio_platform_write(void *device_data, const char __user *buf, in vfio_platform_write() argument 398 struct vfio_platform_device *vdev = device_data; in vfio_platform_write() [all …]
|
/linux-4.1.27/sound/aoa/core/ |
D | alsa.c | 63 void * device_data, struct snd_device_ops * ops) in aoa_snd_device_new() argument 70 err = snd_device_new(card, type, device_data, ops); in aoa_snd_device_new() 75 err = snd_device_register(card, device_data); in aoa_snd_device_new() 81 snd_device_free(card, device_data); in aoa_snd_device_new()
|
/linux-4.1.27/drivers/vfio/ |
D | vfio.c | 94 void *device_data; member 366 void *device_data) in vfio_group_create_device() argument 378 device->device_data = device_data; in vfio_group_create_device() 612 const struct vfio_device_ops *ops, void *device_data) in vfio_add_group_dev() argument 646 device = vfio_group_create_device(group, dev, ops, device_data); in vfio_add_group_dev() 686 return device->device_data; in vfio_device_data() 710 void *device_data = device->device_data; in vfio_del_group_dev() local 756 device->ops->request(device_data, i++); in vfio_del_group_dev() 779 return device_data; in vfio_del_group_dev() 1201 ret = device->ops->open(device->device_data); in vfio_group_get_device_fd() [all …]
|
/linux-4.1.27/drivers/vfio/pci/ |
D | vfio_pci.c | 240 static void vfio_pci_release(void *device_data) in vfio_pci_release() argument 242 struct vfio_pci_device *vdev = device_data; in vfio_pci_release() 256 static int vfio_pci_open(void *device_data) in vfio_pci_open() argument 258 struct vfio_pci_device *vdev = device_data; in vfio_pci_open() 424 static long vfio_pci_ioctl(void *device_data, in vfio_pci_ioctl() argument 427 struct vfio_pci_device *vdev = device_data; in vfio_pci_ioctl() 795 static ssize_t vfio_pci_rw(void *device_data, char __user *buf, in vfio_pci_rw() argument 799 struct vfio_pci_device *vdev = device_data; in vfio_pci_rw() 823 static ssize_t vfio_pci_read(void *device_data, char __user *buf, in vfio_pci_read() argument 829 return vfio_pci_rw(device_data, buf, count, ppos, false); in vfio_pci_read() [all …]
|
/linux-4.1.27/include/sound/ |
D | core.h | 86 void *device_data; /* device structure */ member 278 void *device_data, struct snd_device_ops *ops); 279 int snd_device_register(struct snd_card *card, void *device_data); 281 void snd_device_disconnect(struct snd_card *card, void *device_data); 283 void snd_device_free(struct snd_card *card, void *device_data);
|
/linux-4.1.27/sound/core/seq/ |
D | seq_device.c | 160 struct snd_seq_device *dev = device->device_data; in snd_seq_device_dev_free() 168 struct snd_seq_device *dev = device->device_data; in snd_seq_device_dev_register() 181 struct snd_seq_device *dev = device->device_data; in snd_seq_device_dev_disconnect()
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_mem.c | 220 struct lpfc_device_data *device_data; in lpfc_mem_free() local 268 device_data = list_first_entry(&phba->luns, in lpfc_mem_free() 271 list_del(&device_data->listentry); in lpfc_mem_free() 272 mempool_free(device_data, phba->device_data_mem_pool); in lpfc_mem_free()
|
D | lpfc_scsi.c | 5399 struct lpfc_device_data *device_data; in lpfc_slave_alloc() local 5415 device_data = __lpfc_get_device_data(phba, in lpfc_slave_alloc() 5420 if (!device_data) { in lpfc_slave_alloc() 5422 device_data = lpfc_create_device_data(phba, in lpfc_slave_alloc() 5426 if (!device_data) in lpfc_slave_alloc() 5429 list_add_tail(&device_data->listentry, &phba->luns); in lpfc_slave_alloc() 5431 device_data->rport_data = rport->dd_data; in lpfc_slave_alloc() 5432 device_data->available = true; in lpfc_slave_alloc() 5434 sdev->hostdata = device_data; in lpfc_slave_alloc() 5525 struct lpfc_device_data *device_data = sdev->hostdata; in lpfc_slave_destroy() local [all …]
|
/linux-4.1.27/sound/aoa/ |
D | aoa.h | 120 void * device_data, struct snd_device_ops * ops);
|
/linux-4.1.27/drivers/firmware/ |
D | dmi_scan.c | 249 dev->device_data = NULL; in dmi_save_one_device() 285 dev->device_data = NULL; in dmi_save_oem_strings_devices() 308 dev->device_data = data; in dmi_save_ipmi_device() 330 onboard_dev->dev.device_data = onboard_dev; in dmi_save_dev_onboard()
|
/linux-4.1.27/Documentation/ |
D | vfio.txt | 256 void *device_data); 266 int (*open)(void *device_data); 267 void (*release)(void *device_data); 268 ssize_t (*read)(void *device_data, char __user *buf, 270 ssize_t (*write)(void *device_data, const char __user *buf, 272 long (*ioctl)(void *device_data, unsigned int cmd, 274 int (*mmap)(void *device_data, struct vm_area_struct *vma); 277 Each function is passed the device_data that was originally registered
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | bu21013_ts.c | 256 static irqreturn_t bu21013_gpio_irq(int irq, void *device_data) in bu21013_gpio_irq() argument 258 struct bu21013_ts_data *data = device_data; in bu21013_gpio_irq()
|
/linux-4.1.27/sound/pci/ |
D | cs5530.c | 87 struct snd_cs5530 *chip = device->device_data; in snd_cs5530_dev_free()
|
D | ak4531_codec.c | 353 struct snd_ak4531 *ak4531 = device->device_data; in snd_ak4531_dev_free()
|
D | als300.c | 193 struct snd_als300 *chip = device->device_data; in snd_als300_dev_free()
|
D | ad1889.c | 865 struct snd_ad1889 *chip = device->device_data; in snd_ad1889_dev_free()
|
D | bt87x.c | 702 struct snd_bt87x *chip = device->device_data; in snd_bt87x_dev_free()
|
D | via82xx_modem.c | 1092 struct via82xx_modem *chip = device->device_data; in snd_via82xx_dev_free()
|
D | atiixp_modem.c | 1208 struct atiixp_modem *chip = device->device_data; in snd_atiixp_dev_free()
|
D | intel8x0m.c | 1103 struct intel8x0m *chip = device->device_data; in snd_intel8x0m_dev_free()
|
D | sis7019.c | 1076 struct sis7019 *sis = dev->device_data; in sis_dev_free()
|
D | atiixp.c | 1582 struct atiixp *chip = device->device_data; in snd_atiixp_dev_free()
|
D | fm801.c | 1180 struct fm801 *chip = device->device_data; in snd_fm801_dev_free()
|
D | sonicvibes.c | 1240 struct sonicvibes *sonic = device->device_data; in snd_sonicvibes_dev_free()
|
D | cs4281.c | 1330 struct cs4281 *chip = device->device_data; in snd_cs4281_dev_free()
|
D | es1938.c | 1563 struct es1938 *chip = device->device_data; in snd_es1938_dev_free()
|
D | azt3328.c | 2312 struct snd_azf3328 *chip = device->device_data; in snd_azf3328_dev_free()
|
D | maestro3.c | 2517 struct snd_m3 *chip = device->device_data; in snd_m3_dev_free()
|
D | via82xx.c | 2358 struct via82xx *chip = device->device_data; in snd_via82xx_dev_free()
|
D | es1968.c | 2646 struct es1968 *chip = device->device_data; in snd_es1968_dev_free()
|
D | ens1370.c | 1946 struct ensoniq *ensoniq = device->device_data; in snd_ensoniq_dev_free()
|
D | intel8x0.c | 2952 struct intel8x0 *chip = device->device_data; in snd_intel8x0_dev_free()
|
D | cmipci.c | 2958 struct cmipci *cm = device->device_data; in snd_cmipci_dev_free()
|
/linux-4.1.27/sound/pcmcia/pdaudiocf/ |
D | pdaudiocf.c | 86 struct snd_pdacf *chip = device->device_data; in snd_pdacf_dev_free()
|
/linux-4.1.27/sound/pci/vx222/ |
D | vx222.c | 132 struct vx_core *chip = device->device_data; in snd_vx222_dev_free()
|
/linux-4.1.27/drivers/pci/ |
D | pci-label.c | 55 donboard = dmi->device_data; in find_smbios_instance_string()
|
/linux-4.1.27/sound/isa/sb/ |
D | sb_common.c | 206 struct snd_sb *chip = device->device_data; in snd_sbdsp_dev_free()
|
D | emu8000.c | 1077 struct snd_emu8000 *hw = device->device_data; in snd_emu8000_dev_free()
|
/linux-4.1.27/sound/pcmcia/vx/ |
D | vxpocket.c | 74 struct vx_core *chip = device->device_data; in snd_vxpocket_dev_free()
|
/linux-4.1.27/sound/drivers/opl4/ |
D | opl4_lib.c | 189 struct snd_opl4 *opl4 = device->device_data; in snd_opl4_dev_free()
|
/linux-4.1.27/drivers/media/usb/go7007/ |
D | snd-go7007.c | 215 struct go7007 *go = device->device_data; in go7007_snd_free()
|
/linux-4.1.27/sound/pci/au88x0/ |
D | au88x0.c | 123 vortex_t *vortex = device->device_data; in snd_vortex_dev_free()
|
/linux-4.1.27/sound/i2c/ |
D | i2c.c | 75 struct snd_i2c_bus *bus = device->device_data; in snd_i2c_bus_dev_free()
|
/linux-4.1.27/sound/pci/cs5535audio/ |
D | cs5535audio.c | 273 struct cs5535audio *cs5535au = device->device_data; in snd_cs5535audio_dev_free()
|
/linux-4.1.27/sound/sh/ |
D | sh_dac_audio.c | 308 struct snd_sh_dac *chip = device->device_data; in snd_sh_dac_dev_free()
|
/linux-4.1.27/drivers/platform/chrome/ |
D | chromeos_laptop.c | 158 dev_data = (struct dmi_dev_onboard *)dmi_dev->device_data; in __add_probed_i2c_device()
|
/linux-4.1.27/sound/drivers/opl3/ |
D | opl3_lib.c | 342 struct snd_opl3 *opl3 = device->device_data; in snd_opl3_dev_free()
|
/linux-4.1.27/sound/pci/hda/ |
D | hda_tegra.c | 291 struct azx *chip = device->device_data; in hda_tegra_dev_free()
|
D | hda_codec.c | 501 snd_hda_bus_free(device->device_data); in snd_hda_bus_dev_free() 507 struct hda_bus *bus = device->device_data; in snd_hda_bus_dev_disconnect() 962 snd_hda_codec_register(device->device_data); in snd_hda_codec_dev_register() 968 struct hda_codec *codec = device->device_data; in snd_hda_codec_dev_disconnect() 976 struct hda_codec *codec = device->device_data; in snd_hda_codec_dev_free()
|
D | hda_intel.c | 1162 return azx_free(device->device_data); in azx_dev_free()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_dev.h | 449 uint8_t device_data[QXL_CURSOR_DEVICE_DATA_SIZE]; member
|
/linux-4.1.27/sound/isa/gus/ |
D | gus_main.c | 128 struct snd_gus_card *gus = device->device_data; in snd_gus_dev_free()
|
/linux-4.1.27/sound/pci/aw2/ |
D | aw2-alsa.c | 223 struct aw2 *chip = device->device_data; in snd_aw2_dev_free()
|
/linux-4.1.27/sound/i2c/other/ |
D | ak4117.c | 71 struct ak4117 *chip = device->device_data; in snd_ak4117_dev_free()
|
D | ak4113.c | 66 struct ak4113 *chip = device->device_data; in snd_ak4113_dev_free()
|
D | ak4114.c | 76 struct ak4114 *chip = device->device_data; in snd_ak4114_dev_free()
|
/linux-4.1.27/sound/usb/ |
D | card.c | 320 struct snd_usb_audio *chip = device->device_data; in snd_usb_audio_dev_free()
|
D | mixer.c | 2167 struct usb_mixer_interface *mixer = device->device_data; in snd_usb_mixer_dev_free()
|
/linux-4.1.27/sound/pci/ac97/ |
D | ac97_codec.c | 1018 struct snd_ac97_bus *bus = device->device_data; in snd_ac97_bus_dev_free() 1040 struct snd_ac97 *ac97 = device->device_data; in snd_ac97_dev_free() 1957 struct snd_ac97 *ac97 = device->device_data; in snd_ac97_dev_register() 1977 struct snd_ac97 *ac97 = device->device_data; in snd_ac97_dev_disconnect()
|
/linux-4.1.27/sound/drivers/ |
D | serial-u16550.c | 780 struct snd_uart16550 *uart = device->device_data; in snd_uart16550_dev_free()
|
D | ml403-ac97cr.c | 1105 struct snd_ml403_ac97cr *ml403_ac97cr = snddev->device_data;
|
/linux-4.1.27/sound/pci/lola/ |
D | lola.c | 565 lola_free(device->device_data); in lola_dev_free()
|
/linux-4.1.27/sound/sparc/ |
D | amd7930.c | 927 struct snd_amd7930 *amd = device->device_data; in snd_amd7930_dev_free()
|
D | cs4231.c | 1787 struct snd_cs4231 *cp = device->device_data; in snd_cs4231_sbus_dev_free() 1953 struct snd_cs4231 *cp = device->device_data; in snd_cs4231_ebus_dev_free()
|
/linux-4.1.27/sound/mips/ |
D | sgio2audio.c | 821 struct snd_sgio2audio *chip = device->device_data; in snd_sgio2audio_dev_free()
|
D | hal2.c | 763 struct snd_hal2 *hal2 = device->device_data; in hal2_dev_free()
|
/linux-4.1.27/sound/parisc/ |
D | harmony.c | 904 struct snd_harmony *h = dev->device_data; in snd_harmony_dev_free()
|
/linux-4.1.27/sound/pci/lx6464es/ |
D | lx6464es.c | 567 return snd_lx6464es_free(device->device_data); in snd_lx6464es_dev_free()
|
/linux-4.1.27/sound/spi/ |
D | at73c213.c | 871 struct snd_at73c213 *chip = device->device_data; in snd_at73c213_dev_free()
|
/linux-4.1.27/sound/isa/ad1816a/ |
D | ad1816a_lib.c | 582 struct snd_ad1816a *chip = device->device_data; in snd_ad1816a_dev_free()
|
/linux-4.1.27/sound/isa/es1688/ |
D | es1688_lib.c | 629 struct snd_es1688 *chip = device->device_data; in snd_es1688_dev_free()
|
/linux-4.1.27/sound/pci/mixart/ |
D | mixart.c | 1039 struct snd_mixart *chip = device->device_data; in snd_mixart_chip_dev_free()
|
/linux-4.1.27/sound/ppc/ |
D | pmac.c | 897 struct snd_pmac *chip = device->device_data; in snd_pmac_dev_free()
|
/linux-4.1.27/sound/pci/nm256/ |
D | nm256.c | 1462 struct nm256 *chip = device->device_data; in snd_nm256_dev_free()
|
/linux-4.1.27/sound/pci/ca0106/ |
D | ca0106_main.c | 1273 struct snd_ca0106 *chip = device->device_data; in snd_ca0106_dev_free()
|
/linux-4.1.27/sound/pci/pcxhr/ |
D | pcxhr.c | 1201 struct snd_pcxhr *chip = device->device_data; in pcxhr_chip_dev_free()
|
/linux-4.1.27/drivers/char/ipmi/ |
D | ipmi_ssif.c | 1902 struct dmi_header *dm = dmi_dev->device_data; in decode_dmi()
|
D | ipmi_si_intf.c | 2529 rv = decode_dmi((const struct dmi_header *) dev->device_data, in dmi_find_bmc()
|
/linux-4.1.27/sound/pci/emu10k1/ |
D | emu10k1x.c | 783 struct emu10k1x *chip = device->device_data; in snd_emu10k1x_dev_free()
|
D | emu10k1_main.c | 1337 struct snd_emu10k1 *emu = device->device_data; in snd_emu10k1_dev_free()
|
/linux-4.1.27/sound/pci/ctxfi/ |
D | ctatc.c | 1255 struct ct_atc *atc = dev->device_data; in atc_dev_free()
|
/linux-4.1.27/sound/pci/ali5451/ |
D | ali5451.c | 2081 struct snd_ali *codec = device->device_data; in snd_ali_dev_free()
|
/linux-4.1.27/sound/pci/echoaudio/ |
D | echoaudio.c | 1893 struct echoaudio *chip = device->device_data; in snd_echo_dev_free()
|
/linux-4.1.27/sound/isa/wss/ |
D | wss_lib.c | 1715 struct snd_wss *chip = device->device_data; in snd_wss_dev_free()
|
/linux-4.1.27/sound/pci/korg1212/ |
D | korg1212.c | 2137 struct snd_korg1212 *korg1212 = device->device_data; in snd_korg1212_dev_free()
|
/linux-4.1.27/sound/pci/riptide/ |
D | riptide.c | 1836 struct snd_riptide *chip = device->device_data; in snd_riptide_dev_free()
|
/linux-4.1.27/sound/pci/ice1712/ |
D | ice1724.c | 2525 struct snd_ice1712 *ice = device->device_data; in snd_vt1724_dev_free()
|
D | ice1712.c | 2508 struct snd_ice1712 *ice = device->device_data; in snd_ice1712_dev_free()
|
/linux-4.1.27/sound/pci/ymfpci/ |
D | ymfpci_main.c | 2266 struct snd_ymfpci *chip = device->device_data; in snd_ymfpci_dev_free()
|
/linux-4.1.27/sound/pci/cs46xx/ |
D | cs46xx_lib.c | 2978 struct snd_cs46xx *chip = device->device_data; in snd_cs46xx_dev_free()
|
/linux-4.1.27/sound/pci/trident/ |
D | trident_main.c | 3334 struct snd_trident *trident = device->device_data; in snd_trident_dev_free()
|