Commit 27aaad0e authored by Arnd Bergmann's avatar Arnd Bergmann

Merge tag 'zynq-soc-for-v6.3' of https://github.com/Xilinx/linux-xlnx into arm/soc

ARM: Zynq SoC changes for v6.3

- Fix refcount leak in zynq_early_slcr_init

* tag 'zynq-soc-for-v6.3' of https://github.com/Xilinx/linux-xlnx:
  ARM: zynq: Fix refcount leak in zynq_early_slcr_init

Link: https://lore.kernel.org/r/5d7785ca-7fe0-1597-c56a-7a0f4d230db8@monstr.euSigned-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents ae3147bb 9eedb910
......@@ -213,6 +213,7 @@ int __init zynq_early_slcr_init(void)
zynq_slcr_regmap = syscon_regmap_lookup_by_compatible("xlnx,zynq-slcr");
if (IS_ERR(zynq_slcr_regmap)) {
pr_err("%s: failed to find zynq-slcr\n", __func__);
of_node_put(np);
return -ENODEV;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment