From patchwork Mon Feb 2 20:58:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Valentin X-Patchwork-Id: 5763831 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 2EAAF9F380 for ; Mon, 2 Feb 2015 20:58:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E654720978 for ; Mon, 2 Feb 2015 20:58:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 043452096D for ; Mon, 2 Feb 2015 20:58:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964916AbbBBU6u (ORCPT ); Mon, 2 Feb 2015 15:58:50 -0500 Received: from mail-pa0-f53.google.com ([209.85.220.53]:49304 "EHLO mail-pa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755110AbbBBU6t (ORCPT ); Mon, 2 Feb 2015 15:58:49 -0500 Received: by mail-pa0-f53.google.com with SMTP id kx10so86851510pab.12; Mon, 02 Feb 2015 12:58:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=5mQzpkKwjo7Rhp2ZfVUvL8j+GKL5GXqyMg/+BOLvUa8=; b=HQ6xfIC+KtD3Cv8f65O8wjAKApEK3vLFfnuhWGO+86Lou05E+bvtjQwt3+afIuO4sj Goo3O7GBx8qnbBK2gNzLswbtx5/rWQSpIEQVpOaj65BiRcHPUWRcYgQujNXd1t/vzKKG oR6FMadwI7eq63C64HbVS7c9YWke+EsxJHDuS07TM7cdwgIlvLDmxS7czA3k3Jq+vuWv etK7lHxGPXsKc7gSy/sxp9LU/9eqKXcdex1mvrqOnbbYewMx7eG7zmA8I9W8nlTdh53O lUYk0SWdGVX78IeqeZO+4la2t5RZASH1JRkDR8m4MUaKop0kb2jeUHYKPYu4yaHyRAUR F2Hw== X-Received: by 10.70.133.70 with SMTP id pa6mr32977534pdb.24.1422910728522; Mon, 02 Feb 2015 12:58:48 -0800 (PST) Received: from localhost (amazon.gigabitethernet4-0-6.asr1.snv2.gblx.net. [64.211.110.86]) by mx.google.com with ESMTPSA id j10sm177134pdr.37.2015.02.02.12.58.46 (version=TLSv1.2 cipher=AES128-GCM-SHA256 bits=128/128); Mon, 02 Feb 2015 12:58:47 -0800 (PST) From: Eduardo Valentin To: Linux PM , Viresh Kumar Cc: Eduardo Valentin , "Rafael J. Wysocki" , Kukjin Kim , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 01/14] cpufreq: exynos4210: properly put of node Date: Mon, 2 Feb 2015 16:58:04 -0400 Message-Id: <1422910697-5920-2-git-send-email-edubezval@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1422910697-5920-1-git-send-email-edubezval@gmail.com> References: <1422910697-5920-1-git-send-email-edubezval@gmail.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_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 Call of_node_put when necessary during init. Cc: "Rafael J. Wysocki" Cc: Viresh Kumar Cc: Kukjin Kim Cc: linux-pm@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Eduardo Valentin --- drivers/cpufreq/exynos4210-cpufreq.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/cpufreq/exynos4210-cpufreq.c b/drivers/cpufreq/exynos4210-cpufreq.c index 843ec82..dba48f0 100644 --- a/drivers/cpufreq/exynos4210-cpufreq.c +++ b/drivers/cpufreq/exynos4210-cpufreq.c @@ -169,6 +169,7 @@ int exynos4210_cpufreq_init(struct exynos_dvfs_info *info) info->set_freq = exynos4210_set_frequency; cpufreq = info; + of_node_put(np); return 0; @@ -179,6 +180,8 @@ err_mout_mpll: err_moutcore: clk_put(cpu_clk); + of_node_put(np); pr_debug("%s: failed initialization\n", __func__); + return -EINVAL; }