diff options
author | Axel Lin <[email protected]> | 2010-11-25 15:08:31 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2010-11-25 11:08:25 +0000 |
commit | 917dac0ff1754776b86967b0ec1750022d9c4265 (patch) | |
tree | 47229eb19f1807ed85955131565a2751c47b7232 | |
parent | 4e1f86509732ccc39938974db0612d14afbca953 (diff) |
ASoC: pcm030-audio-fabric: fix resource leak in pcm030_fabric_init error path
Add missing platform_device_put() if platform_device_add() failed.
Signed-off-by: Axel Lin <[email protected]>
Acked-by: Liam Girdwood <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/fsl/pcm030-audio-fabric.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/pcm030-audio-fabric.c b/sound/soc/fsl/pcm030-audio-fabric.c index 25f27ec1dd6e..ba4d85e317ed 100644 --- a/sound/soc/fsl/pcm030-audio-fabric.c +++ b/sound/soc/fsl/pcm030-audio-fabric.c @@ -76,6 +76,7 @@ static __init int pcm030_fabric_init(void) rc = platform_device_add(pdev); if (rc) { pr_err("pcm030_fabric_init: platform_device_add() failed\n"); + platform_device_put(pdev); return -ENODEV; } return 0; |