From patchwork Thu Mar 7 04:13:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kachhap X-Patchwork-Id: 2230041 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 7A8E3DF5B1 for ; Thu, 7 Mar 2013 04:15:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932398Ab3CGEOM (ORCPT ); Wed, 6 Mar 2013 23:14:12 -0500 Received: from mail-pa0-f43.google.com ([209.85.220.43]:61684 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754601Ab3CGEOK (ORCPT ); Wed, 6 Mar 2013 23:14:10 -0500 Received: by mail-pa0-f43.google.com with SMTP id bh2so123713pad.30 for ; Wed, 06 Mar 2013 20:14:09 -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 :in-reply-to:references; bh=0RRXFWqRZKoyDubdlp30gaBpygtYV6TqlnoWKHStDds=; b=x1F0B3AOxzaW8jy2ov5gSr5LlK8p/hkjg3XH6szs4U0o6hf+iFBbmtSVCeLYnIlXL2 n9eAiQ+tt39kJFV9wYF8Jkt46H7hHcF888PzO6gpY6Oj9vy7+j5ezVesernOIua0b0XZ 6dMNjar4WqvC6zK6nv8legDj28l+HYeITv8H4KfG+SVqZZA17V6N8wK0PA6iHuaitGbj MVUoR0ETOgr9lwIN0PpQG7pOalG9XaVH13NrXaQHmGNSTP4Nu0VFsQx5n2G0Tlm9Xkx1 RbR08FXyfKjykkI+D3QIH6Tk9NyBbHXYKYPBX8sF/mibZOtywkMq4prySSKR7DWXhjvx RUvw== X-Received: by 10.66.163.234 with SMTP id yl10mr818807pab.55.1362629649506; Wed, 06 Mar 2013 20:14:09 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id vd4sm113478pbc.35.2013.03.06.20.14.04 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 06 Mar 2013 20:14:08 -0800 (PST) From: Amit Daniel Kachhap To: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org, "Rafael J. Wysocki" , linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Kukjin Kim , Thomas Abraham , cpufreq@vger.kernel.org, Inderpal Singh , Viresh Kumar Subject: [PATCH V3 2/4] cpufreq: exynos: Remove error return even if no soc is found Date: Thu, 7 Mar 2013 09:43:45 +0530 Message-Id: <1362629627-10012-2-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1362629627-10012-1-git-send-email-amit.daniel@samsung.com> References: <1362629627-10012-1-git-send-email-amit.daniel@samsung.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.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;