diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2020-12-28 15:03:02 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-17 16:17:01 +0300 |
commit | 6a0e580ded884443dfda297f0bf0c6f7a4c395e6 (patch) | |
tree | 4975ac96b4ffd21450b16b6c07c9233e0d63326d /drivers/interconnect/imx | |
parent | e5689d84ebd8dbe1222ce15147214b3118d8219b (diff) | |
download | linux-6a0e580ded884443dfda297f0bf0c6f7a4c395e6.tar.xz |
interconnect: imx: Add a missing of_node_put after of_device_is_available
commit c6174c0e058fc0a54e0b9787c44cb24b0a8d0217 upstream.
Add an 'of_node_put()' call when a tested device node is not available.
Fixes: f0d8048525d7 ("interconnect: Add imx core driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/20201206121304.29381-1-christophe.jaillet@wanadoo.fr
Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/interconnect/imx')
-rw-r--r-- | drivers/interconnect/imx/imx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/interconnect/imx/imx.c b/drivers/interconnect/imx/imx.c index 41dba7090c2a..e398ebf1dbba 100644 --- a/drivers/interconnect/imx/imx.c +++ b/drivers/interconnect/imx/imx.c @@ -99,6 +99,7 @@ static int imx_icc_node_init_qos(struct icc_provider *provider, if (!dn || !of_device_is_available(dn)) { dev_warn(dev, "Missing property %s, skip scaling %s\n", adj->phandle_name, node->name); + of_node_put(dn); return 0; } |