diff options
author | Eliot Blennerhassett <eblennerhassett@audioscience.com> | 2011-12-21 19:38:44 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-22 02:13:06 -0500 |
commit | 50d5f773ecc42fec029530f0e2e22686ccdf0ac7 (patch) | |
tree | 37c42d44b6b6918004f52660c7dfe9f816d78c41 /sound | |
parent | 7036b92d303a01477e27a5a9b2d582a5df3cc8ef (diff) |
ALSA: asihpi - Simplify dsp code close.
dsp_code struct is not created if firmware is invalid, so check
and zero of firmware pointer is not necessary
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/asihpi/hpidspcd.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sound/pci/asihpi/hpidspcd.c b/sound/pci/asihpi/hpidspcd.c index 21cdb9e39fba..456a758f04f6 100644 --- a/sound/pci/asihpi/hpidspcd.c +++ b/sound/pci/asihpi/hpidspcd.c | |||
@@ -109,11 +109,8 @@ error1: | |||
109 | /*-------------------------------------------------------------------*/ | 109 | /*-------------------------------------------------------------------*/ |
110 | void hpi_dsp_code_close(struct dsp_code *dsp_code) | 110 | void hpi_dsp_code_close(struct dsp_code *dsp_code) |
111 | { | 111 | { |
112 | if (dsp_code->pvt->firmware) { | 112 | HPI_DEBUG_LOG(DEBUG, "dsp code closed\n"); |
113 | HPI_DEBUG_LOG(DEBUG, "dsp code closed\n"); | 113 | release_firmware(dsp_code->pvt->firmware); |
114 | release_firmware(dsp_code->pvt->firmware); | ||
115 | dsp_code->pvt->firmware = NULL; | ||
116 | } | ||
117 | kfree(dsp_code->pvt); | 114 | kfree(dsp_code->pvt); |
118 | } | 115 | } |
119 | 116 | ||