Home
last modified time | relevance | path

Searched refs:fw_entry (Results 1 – 9 of 9) sorted by relevance

/sound/pci/pcxhr/
Dpcxhr_hwdep.c370 const struct firmware *fw_entry; in pcxhr_setup_firmware() local
378 if (request_firmware(&fw_entry, path, &mgr->pci->dev)) { in pcxhr_setup_firmware()
385 err = pcxhr_dsp_load(mgr, i, fw_entry); in pcxhr_setup_firmware()
386 release_firmware(fw_entry); in pcxhr_setup_firmware()
/sound/sh/
Daica.c513 const struct firmware *fw_entry; in load_aica_firmware() local
515 err = request_firmware(&fw_entry, "aica_firmware.bin", &pd->dev); in load_aica_firmware()
520 spu_memload(0, fw_entry->data, fw_entry->size); in load_aica_firmware()
522 release_firmware(fw_entry); in load_aica_firmware()
/sound/pci/mixart/
Dmixart_hwdep.c564 const struct firmware *fw_entry; in snd_mixart_setup_firmware() local
569 if (request_firmware(&fw_entry, path, &mgr->pci->dev)) { in snd_mixart_setup_firmware()
575 err = mixart_dsp_load(mgr, i, fw_entry); in snd_mixart_setup_firmware()
576 release_firmware(fw_entry); in snd_mixart_setup_firmware()
/sound/soc/sh/
Dsiu_dai.c718 const struct firmware *fw_entry; in siu_probe() local
729 ret = request_firmware(&fw_entry, "siu_spb.bin", &pdev->dev); in siu_probe()
737 memcpy(&info->fw, fw_entry->data, fw_entry->size); in siu_probe()
739 release_firmware(fw_entry); in siu_probe()
/sound/pci/echoaudio/
Dechoaudio.h442 static int get_firmware(const struct firmware **fw_entry,
444 static void free_firmware(const struct firmware *fw_entry,
Dechoaudio.c31 static int get_firmware(const struct firmware **fw_entry, in get_firmware() argument
42 *fw_entry = chip->fw_cache[fw_index]; in get_firmware()
50 err = request_firmware(fw_entry, name, &chip->pci->dev); in get_firmware()
56 chip->fw_cache[fw_index] = *fw_entry; in get_firmware()
63 static void free_firmware(const struct firmware *fw_entry, in free_firmware() argument
69 release_firmware(fw_entry); in free_firmware()
/sound/pci/riptide/
Driptide.c417 const struct firmware *fw_entry; member
1222 if (!chip->fw_entry) { in try_to_load_firmware()
1223 err = request_firmware(&chip->fw_entry, "riptide.hex", in try_to_load_firmware()
1231 err = loadfirmware(cif, chip->fw_entry->data, chip->fw_entry->size); in try_to_load_firmware()
1813 release_firmware(chip->fw_entry); in snd_riptide_free()
/sound/pci/emu10k1/
Demu10k1_main.c651 const struct firmware *fw_entry) in snd_emu1010_load_firmware_entry() argument
659 if (!fw_entry) in snd_emu1010_load_firmware_entry()
675 for (n = 0; n < fw_entry->size; n++) { in snd_emu1010_load_firmware_entry()
676 value = fw_entry->data[n]; in snd_emu1010_load_firmware_entry()
/sound/pci/hda/
Dpatch_ca0132.c8570 const struct firmware *fw_entry = NULL; in ca0132_download_dsp_images() local
8580 if (request_firmware(&fw_entry, DESKTOP_EFX_FILE, in ca0132_download_dsp_images()
8587 if (request_firmware(&fw_entry, R3DI_EFX_FILE, in ca0132_download_dsp_images()
8600 if (!fw_entry) { in ca0132_download_dsp_images()
8602 if (request_firmware(&fw_entry, EFX_FILE, in ca0132_download_dsp_images()
8607 dsp_os_image = (struct dsp_image_seg *)(fw_entry->data); in ca0132_download_dsp_images()
8616 release_firmware(fw_entry); in ca0132_download_dsp_images()