summaryrefslogtreecommitdiff
path: root/sound/soc/fsl/fsl_dsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/fsl/fsl_dsp.c')
-rw-r--r--sound/soc/fsl/fsl_dsp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/soc/fsl/fsl_dsp.c b/sound/soc/fsl/fsl_dsp.c
index 33e19f80327a..7d5a686f4e8d 100644
--- a/sound/soc/fsl/fsl_dsp.c
+++ b/sound/soc/fsl/fsl_dsp.c
@@ -401,18 +401,18 @@ static int fsl_dsp_close(struct inode *inode, struct file *file)
return PTR_ERR(client);
proxy = client->proxy;
- if (proxy) {
- /* ...release all pending messages */
- xf_msg_free_all(proxy, &client->queue);
- /* ...recycle client id and release memory */
- xf_client_free(client);
- }
+ /* release all pending messages */
+ if (proxy)
+ xf_msg_free_all(proxy, &client->queue);
dsp_priv = (struct fsl_dsp *)client->global;
dev = dsp_priv->dev;
pm_runtime_put_sync(dev);
+ /* ...recycle client id and release memory */
+ xf_client_free(client);
+
mutex_lock(&dsp_priv->dsp_mutex);
/* decrease reference counter when closing device */
atomic_long_dec(&dsp_priv->refcnt);