From patchwork Wed Jun 6 12:26:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ike Panhc X-Patchwork-Id: 163333 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 360CFB6FA4 for ; Wed, 6 Jun 2012 22:27:00 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1ScFK8-0002Ne-6K; Wed, 06 Jun 2012 12:26:52 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1ScFK5-0002N2-GA for kernel-team@lists.ubuntu.com; Wed, 06 Jun 2012 12:26:49 +0000 Received: from [210.242.151.101] (helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ScFK4-0005va-Sn for kernel-team@lists.ubuntu.com; Wed, 06 Jun 2012 12:26:49 +0000 From: Ike Panhc To: kernel-team@lists.ubuntu.com Subject: [PATCH 01/21] clk: add config option HAVE_CLK_PREPARE into Kconfig Date: Wed, 6 Jun 2012 20:26:45 +0800 Message-Id: <1338985605-25960-1-git-send-email-ike.pan@canonical.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1338985555-25924-1-git-send-email-ike.pan@canonical.com> References: <1338985555-25924-1-git-send-email-ike.pan@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com From: Shawn Guo BugLink: http://launchpad.net/bugs/1008345 The commit 40d3e0f (clk: provide prepare/unprepare functions) provides the config option HAVE_CLK_PREPARE for platforms that have prepare/unprepare implementation to select. This patch adds the option into drivers/clk/Kconfig, so that it can be actually selected. Signed-off-by: Shawn Guo Cc: Russell King (cherry picked from commit 5c77f5608a5081632b9530e5f3260f8b63247bd8) Signed-off-by: Ike Panhc --- drivers/clk/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 3530927..9b3cd08 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -3,5 +3,8 @@ config CLKDEV_LOOKUP bool select HAVE_CLK +config HAVE_CLK_PREPARE + bool + config HAVE_MACH_CLKDEV bool