diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-11-03 11:34:12 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-11-03 14:02:33 +0100 |
commit | e369086968157415aeb11af3b57cd998c6721603 (patch) | |
tree | aae8b6c975e92c2f30fe05a00433e6b9368eccb6 /sound/pci/echoaudio/echoaudio_dsp.c | |
parent | Merge branch 'topic/kerneldoc' into for-next (diff) | |
download | linux-e369086968157415aeb11af3b57cd998c6721603.tar.xz linux-e369086968157415aeb11af3b57cd998c6721603.zip |
ALSA: echoaudio: add reference of struct echoaudio
added reference of struct echoaudio to free_firmware function.
this structure will be later used to get a reference of the card
when converting snd_printk to dev_* in the next patch of the series.
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r-- | sound/pci/echoaudio/echoaudio_dsp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/echoaudio/echoaudio_dsp.c b/sound/pci/echoaudio/echoaudio_dsp.c index 5a6a217b82e0..977b2bd2e72f 100644 --- a/sound/pci/echoaudio/echoaudio_dsp.c +++ b/sound/pci/echoaudio/echoaudio_dsp.c @@ -206,12 +206,12 @@ static int load_asic_generic(struct echoaudio *chip, u32 cmd, short asic) } DE_INIT(("ASIC loaded\n")); - free_firmware(fw); + free_firmware(fw, chip); return 0; la_error: DE_INIT(("failed on write_dsp\n")); - free_firmware(fw); + free_firmware(fw, chip); return -EIO; } @@ -317,11 +317,11 @@ static int install_resident_loader(struct echoaudio *chip) } DE_INIT(("Resident loader successfully installed\n")); - free_firmware(fw); + free_firmware(fw, chip); return 0; irl_error: - free_firmware(fw); + free_firmware(fw, chip); return -EIO; } @@ -491,7 +491,7 @@ static int load_firmware(struct echoaudio *chip) if (err < 0) return err; err = load_dsp(chip, (u16 *)fw->data); - free_firmware(fw); + free_firmware(fw, chip); if (err < 0) return err; |