diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2021-06-17 11:27:56 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-22 12:47:13 +0100 |
commit | 0ba0f44fd516b34c9f40cd82fd480705d0f378dc (patch) | |
tree | 011febcd71c48f238940408d08c4a58f8363735b /sound/soc/sof/imx | |
parent | d245fff1013cb7456ea9ca3f7b858e438c6bbf79 (diff) |
ASoC: SOF: imx: Add missing of_node_put() in imx8_probe()
This node pointer is returned by of_parse_phandle() with refcount
incremented in this function. of_node_put() on it before exiting
this function.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20210617032756.599359-1-yangyingliang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/imx')
-rw-r--r-- | sound/soc/sof/imx/imx8.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/sof/imx/imx8.c b/sound/soc/sof/imx/imx8.c index 4e7dccadd7d0..12fedf0984bd 100644 --- a/sound/soc/sof/imx/imx8.c +++ b/sound/soc/sof/imx/imx8.c @@ -315,6 +315,7 @@ static int imx8_probe(struct snd_sof_dev *sdev) } ret = of_address_to_resource(res_node, 0, &res); + of_node_put(res_node); if (ret) { dev_err(&pdev->dev, "failed to get reserved region address\n"); goto exit_pdev_unregister; |