From patchwork Wed Jun 12 08:15:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 250712 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id 5F4972C03CC for ; Wed, 12 Jun 2013 18:21:37 +1000 (EST) Received: from mail-pa0-x232.google.com (mail-pa0-x232.google.com [IPv6:2607:f8b0:400e:c03::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 1F3892C007B for ; Wed, 12 Jun 2013 18:21:08 +1000 (EST) Received: by mail-pa0-f50.google.com with SMTP id fb1so6340762pad.9 for ; Wed, 12 Jun 2013 01:21:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references:x-gm-message-state; bh=j6YrBFEYoXWSpiZhQt8ehSDtzpXh0nW6bIY+dg238AU=; b=LtU2vEe9292G0ZWJhC7IBfc+TsoOLabRC+B3xIlDakDPpMdkV1LbDgcDS4FzEPYQTv Sg4sHy5sRrGSPBlRErJewYJJjf6vXXcx2/C2FITBlh09voXVk3UyQTL+E1w9EN3Q0xJg s9Nf+8aRuPSk9f6ncV0suGMMIe56DzyY2nnOVfxrG3YMkZNtFmzZwScf86AKBc+X5xqV AyvOZevLIFwqtWh+5LZ4piMHPxWZdPKQntoupji6ShvfmtshhCISCv2qGTSaGLCDQIOz QCFuHEvOKAv1sgGQkFUcUWB/LbyYq1lXU4XzweqYbNq8tYxSmd0uWtexL+23/OorXsNs Ccgw== X-Received: by 10.68.178.161 with SMTP id cz1mr18357396pbc.27.1371025265002; Wed, 12 Jun 2013 01:21:05 -0700 (PDT) Received: from localhost ([106.197.71.203]) by mx.google.com with ESMTPSA id fn9sm23925532pab.2.2013.06.12.01.20.56 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 12 Jun 2013 01:21:04 -0700 (PDT) From: Viresh Kumar To: rjw@sisk.pl Subject: [PATCH 07/11] cpufreq: powerpc: CBE_RAS: select CPU_FREQ_TABLE Date: Wed, 12 Jun 2013 13:45:14 +0530 Message-Id: <601f678e73c3a5fbcc392ac480a2d12b155d0485.1371022830.git.viresh.kumar@linaro.org> X-Mailer: git-send-email 1.7.12.rc2.18.g61b472e In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQn9OqXh766JwXuGCtRkOB7IfnaugDAkuS8Wo2Pjql/8whITUSuV+gJ7i82AOqQAQoi+ezQt Cc: robin.randhawa@arm.com, arnd@arndb.de, linux-pm@vger.kernel.org, Viresh Kumar , patches@linaro.org, Liviu.Dudau@arm.com, linux-kernel@vger.kernel.org, cpufreq@vger.kernel.org, linaro-kernel@lists.linaro.org, Steve.Bannister@arm.com, arvind.chauhan@arm.com, linuxppc-dev@lists.ozlabs.org, charles.garcia-tobin@arm.com X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" CPUFreq driver of this platform uses APIs from freq_table.c and so must select CPU_FREQ_TABLE. Cc: linuxppc-dev@lists.ozlabs.org Signed-off-by: Viresh Kumar --- drivers/cpufreq/Kconfig.powerpc | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpufreq/Kconfig.powerpc b/drivers/cpufreq/Kconfig.powerpc index 9c926ca..68c1abc 100644 --- a/drivers/cpufreq/Kconfig.powerpc +++ b/drivers/cpufreq/Kconfig.powerpc @@ -1,6 +1,7 @@ config CPU_FREQ_CBE tristate "CBE frequency scaling" depends on CBE_RAS && PPC_CELL + select CPU_FREQ_TABLE default m help This adds the cpufreq driver for Cell BE processors.