linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pci/controller/pcie-rcar-host: Hold the reference returned by of_find_matching_node
@ 2022-06-21  7:01 Liang He
  2022-06-21  8:36 ` Geert Uytterhoeven
  2022-06-21 22:49 ` Bjorn Helgaas
  0 siblings, 2 replies; 5+ messages in thread
From: Liang He @ 2022-06-21  7:01 UTC (permalink / raw)
  To: marek.vasut+renesas, yoshihiro.shimoda.uh, lpieralisi, robh, kw,
	bhelgaas
  Cc: windhl, linux-pci, linux-renesas-soc

In rcar_pcie_init(), we need to hold the reference returned by
of_find_matching_node() which is used to call of_node_put() for
refcount balance.

Signed-off-by: Liang He <windhl@126.com>
---
 drivers/pci/controller/pcie-rcar-host.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/pci/controller/pcie-rcar-host.c b/drivers/pci/controller/pcie-rcar-host.c
index 997c4df6a1e7..405ec3d64f30 100644
--- a/drivers/pci/controller/pcie-rcar-host.c
+++ b/drivers/pci/controller/pcie-rcar-host.c
@@ -1158,7 +1158,10 @@ static const struct of_device_id rcar_pcie_abort_handler_of_match[] __initconst
 
 static int __init rcar_pcie_init(void)
 {
-	if (of_find_matching_node(NULL, rcar_pcie_abort_handler_of_match)) {
+	struct device_node *np = of_find_matching_node(NULL, rcar_pcie_abort_handler_of_match);
+
+	if (np) {
+		of_node_put(np);
 #ifdef CONFIG_ARM_LPAE
 		hook_fault_code(17, rcar_pcie_aarch32_abort_handler, SIGBUS, 0,
 				"asynchronous external abort");
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-06-22  7:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21  7:01 [PATCH] pci/controller/pcie-rcar-host: Hold the reference returned by of_find_matching_node Liang He
2022-06-21  8:36 ` Geert Uytterhoeven
2022-06-21 22:49 ` Bjorn Helgaas
2022-06-22  1:32   ` Liang He
2022-06-22  7:49   ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).