public inbox for linux-tegra@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] soc/tegra: refactor soc_is_tegra()
@ 2018-11-21 14:12 Yangtao Li
  2018-11-21 14:34 ` Jon Hunter
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Yangtao Li @ 2018-11-21 14:12 UTC (permalink / raw)
  To: thierry.reding, jonathanh; +Cc: linux-tegra, linux-kernel, Yangtao Li

of_find_node_by_path() acquires a reference to the node returned by
it and that reference needs to be dropped by its caller.soc_is_tegra()
doesn't do that, so fix it.Call of_machine_is_compatible() to refactor
soc_is_tegra() whcih automatically manages the reference count.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/soc/tegra/common.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
index cd8f41351add..0b40700b672a 100644
--- a/drivers/soc/tegra/common.c
+++ b/drivers/soc/tegra/common.c
@@ -22,11 +22,13 @@ static const struct of_device_id tegra_machine_match[] = {
 
 bool soc_is_tegra(void)
 {
-	struct device_node *root;
+	struct of_device_id *match = tegra_machine_match;
 
-	root = of_find_node_by_path("/");
-	if (!root)
-		return false;
+	while(match->compatible){
+		if(of_machine_is_compatible(match->compatible))
+			return true;
+		match++;
+	}
 
-	return of_match_node(tegra_machine_match, root) != NULL;
+	return false;
 }
-- 
2.17.0

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

end of thread, other threads:[~2018-11-22 11:02 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-21 14:12 [PATCH] soc/tegra: refactor soc_is_tegra() Yangtao Li
2018-11-21 14:34 ` Jon Hunter
2018-11-21 14:43   ` Thierry Reding
2018-11-21 14:47     ` Frank Lee
2018-11-21 14:50       ` Jon Hunter
2018-11-21 14:56         ` Thierry Reding
2018-11-21 14:57           ` Frank Lee
2018-11-21 15:28 ` Thierry Reding
2018-11-22 10:45 ` Arnd Bergmann
2018-11-22 10:49   ` Arnd Bergmann
2018-11-22 11:02     ` Frank Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox