From patchwork Thu Aug 7 23:01:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tuomas Tynkkynen X-Patchwork-Id: 4693031 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1B5F79F375 for ; Thu, 7 Aug 2014 23:05:25 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 58A612018A for ; Thu, 7 Aug 2014 23:05:24 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5F51A2017D for ; Thu, 7 Aug 2014 23:05:23 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XFWht-0002hG-4Q; Thu, 07 Aug 2014 23:02:49 +0000 Received: from hqemgate14.nvidia.com ([216.228.121.143]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XFWhd-0002ZQ-NT for linux-arm-kernel@lists.infradead.org; Thu, 07 Aug 2014 23:02:34 +0000 Received: from hqnvupgp08.nvidia.com (Not Verified[216.228.121.13]) by hqemgate14.nvidia.com id ; Thu, 07 Aug 2014 16:03:24 -0700 Received: from hqemhub03.nvidia.com ([172.20.12.94]) by hqnvupgp08.nvidia.com (PGP Universal service); Thu, 07 Aug 2014 15:53:20 -0700 X-PGP-Universal: processed; by hqnvupgp08.nvidia.com on Thu, 07 Aug 2014 15:53:20 -0700 Received: from ttynkkynen-lnx.Nvidia.com (172.20.144.16) by hqemhub03.nvidia.com (172.20.150.15) with Microsoft SMTP Server id 8.3.342.0; Thu, 7 Aug 2014 16:02:10 -0700 From: Tuomas Tynkkynen To: Grant Likely , Rob Herring Subject: [PATCH 2/3] soc/tegra: Use of_match_machine in soc_is_tegra() Date: Fri, 8 Aug 2014 02:01:54 +0300 Message-ID: <1407452515-2390-3-git-send-email-ttynkkynen@nvidia.com> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1407452515-2390-1-git-send-email-ttynkkynen@nvidia.com> References: <1407452515-2390-1-git-send-email-ttynkkynen@nvidia.com> X-NVConfidentiality: public MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140807_160233_766304_46F85B20 X-CRM114-Status: GOOD ( 11.15 ) X-Spam-Score: -0.7 (/) Cc: devicetree@vger.kernel.org, Daniel Lezcano , linux-pm@vger.kernel.org, Stephen Warren , "Rafael J. Wysocki" , linux-kernel@vger.kernel.org, Thierry Reding , Tuomas Tynkkynen , linux-tegra@vger.kernel.org, Lorenzo Pieralisi , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Use the new helper function, also fixing a device_node refcount leak. Signed-off-by: Tuomas Tynkkynen Acked-by: Stephen Warren Reviewed-by: Thierry Reding Acked-by: Thierry Reding --- drivers/soc/tegra/common.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c index a71cb74..f6571f5 100644 --- a/drivers/soc/tegra/common.c +++ b/drivers/soc/tegra/common.c @@ -20,11 +20,5 @@ static const struct of_device_id tegra_machine_match[] = { bool soc_is_tegra(void) { - struct device_node *root; - - root = of_find_node_by_path("/"); - if (!root) - return false; - - return of_match_node(tegra_machine_match, root) != NULL; + return of_match_machine(tegra_machine_match) != NULL; }