From patchwork Thu Mar 28 08:05:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kachhap X-Patchwork-Id: 2355321 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 308A33FD40 for ; Thu, 28 Mar 2013 08:08:54 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UL7qf-0003PX-5G; Thu, 28 Mar 2013 08:06:13 +0000 Received: from mail-pd0-f177.google.com ([209.85.192.177]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UL7qJ-0003Li-0Q for linux-arm-kernel@lists.infradead.org; Thu, 28 Mar 2013 08:05:52 +0000 Received: by mail-pd0-f177.google.com with SMTP id y14so4003494pdi.36 for ; Thu, 28 Mar 2013 01:05:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=0RRXFWqRZKoyDubdlp30gaBpygtYV6TqlnoWKHStDds=; b=FYKHU+losgiHF9FCgBP0wFc17okXJ8dAus+8jp15BZIb6x6AIkS9pRTLrfT9IkH+P3 +XlEh7cIMB+enzE+fSh/ZG0NNvo4SPdmKg/OgWsUOSteVb3A6YrZlWcRbtJNELQHirDt W7LTOtKapWQRDG5/0iOpmY2xwBuPlsyGaWf5TwJMOlLndDr7pKPUYaX6LBOBSljzlTsb lpqwfp6scHD4YSk0WT6pQSk2n+dzWnT4PIuDQjRHOdvtk793UhYd+z9kP5nx8xMZPrcb rCP+Y58zJB3GpyMWWYdoX3hGICrmPQqBVXz0g1+Dl/8zQXfgMW8X0oe7OssA/ulo+97i ktHQ== X-Received: by 10.68.180.193 with SMTP id dq1mr34464541pbc.67.1364457949471; Thu, 28 Mar 2013 01:05:49 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id fk1sm24621733pbd.36.2013.03.28.01.05.44 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 28 Mar 2013 01:05:48 -0700 (PDT) From: Amit Daniel Kachhap To: linux-pm@vger.kernel.org Subject: [PATCH V5 2/4] cpufreq: exynos: Remove error return even if no soc is found Date: Thu, 28 Mar 2013 13:35:20 +0530 Message-Id: <1364457923-8499-3-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1364457923-8499-1-git-send-email-amit.daniel@samsung.com> References: <1364457923-8499-1-git-send-email-amit.daniel@samsung.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130328_040551_264774_DD4E034D X-CRM114-Status: GOOD ( 15.09 ) X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [209.85.192.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (amitdanielk[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Kukjin Kim , Russell King - ARM Linux , Viresh Kumar , linux-kernel@vger.kernel.org, cpufreq@vger.kernel.org, "Rafael J. Wysocki" , linux-samsung-soc@vger.kernel.org, Thomas Abraham , Inderpal Singh , Sylwester Nawrocki , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org This patch helps to have single binary for exynos5440 and previous exynos soc's. This change is needed for adding exynos5440 cpufreq driver which does not uses exynos-cpufreq common file and adds it own driver. Signed-off-by: Amit Daniel Kachhap --- drivers/cpufreq/exynos-cpufreq.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/cpufreq/exynos-cpufreq.c b/drivers/cpufreq/exynos-cpufreq.c index 78057a3..ee75997 100644 --- a/drivers/cpufreq/exynos-cpufreq.c +++ b/drivers/cpufreq/exynos-cpufreq.c @@ -297,7 +297,7 @@ static int __init exynos_cpufreq_init(void) else if (soc_is_exynos5250()) ret = exynos5250_cpufreq_init(exynos_info); else - pr_err("%s: CPU type not found\n", __func__); + return 0; if (ret) goto err_vdd_arm;