From patchwork Wed Feb 6 19:39: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: 2106271 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 80C7B3FCFC for ; Wed, 6 Feb 2013 19:41:58 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1U3AqQ-0004sC-BY; Wed, 06 Feb 2013 19:39:46 +0000 Received: from mail-ye0-f176.google.com ([209.85.213.176]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1U3AqM-0004rU-GV for linux-arm-kernel@lists.infradead.org; Wed, 06 Feb 2013 19:39:43 +0000 Received: by mail-ye0-f176.google.com with SMTP id m1so451896yen.35 for ; Wed, 06 Feb 2013 11:39:40 -0800 (PST) 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; bh=/+fuHBPIvIZvO9C8uCcuWr8+7CJGG80PNJ/GdY132EQ=; b=wZH/6Q1ipxeGm0R+mmGlc+aqSgn6aNoFEIkTZVGYQnWF4OOfCGWNKgtDs8Jqm4iDqP gVPIjiZ4HzN6Qk7wfwetG3T8SiS5IpVMUO4wC06YjYNL1/0vjNnnHmKLDynumeVK7W18 amiGDn56VPLdv1TeSYHMLnjaoNxVoDtSp3svYRDau9lEZbmn1+KRI5pafY97EJWIpte+ WFUFquMOFqA230mfb3O8Ktya10oj/h84AtvYLSGVqdsUs0XIpc/RLoDze1sz9tmunfej kFt/3Ny4UM0NygtWtbApdIqaTg/suZjbLOFqQo+m6uO8bo4bsmNEx+KDyZjRJnsxqqVZ N6cw== X-Received: by 10.236.173.1 with SMTP id u1mr37936701yhl.2.1360179580661; Wed, 06 Feb 2013 11:39:40 -0800 (PST) Received: from localhost.localdomain (D32451F2.uspool.samsung.com. [211.36.81.242]) by mx.google.com with ESMTPS id d19sm23043770anm.18.2013.02.06.11.39.37 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 06 Feb 2013 11:39:39 -0800 (PST) From: Amit Daniel Kachhap To: linux-pm@vger.kernel.org Subject: [PATCH 1/3] cpufreq: exynos: Remove error return even if no soc found Date: Wed, 6 Feb 2013 11:39:20 -0800 Message-Id: <1360179562-19950-1-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.5.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130206_143942_603568_F151B6C2 X-CRM114-Status: GOOD ( 10.46 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (amitdanielk[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.213.176 listed in list.dnswl.org] -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: kgene.kim@samsung.com, cpufreq@vger.kernel.org, "Rafael J. Wysocki" , linux-samsung-soc@vger.kernel.org, Thomas Abraham , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org This change is needed for adding different type of cpufreq driver and support single binary image. Signed-off-by: Amit Daniel Kachhap --- drivers/cpufreq/exynos-cpufreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpufreq/exynos-cpufreq.c b/drivers/cpufreq/exynos-cpufreq.c index 7012ea8..9d3690a 100644 --- a/drivers/cpufreq/exynos-cpufreq.c +++ b/drivers/cpufreq/exynos-cpufreq.c @@ -272,7 +272,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;