From patchwork Wed Dec 14 03:53:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Turquette X-Patchwork-Id: 5651 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id E719723E01 for ; Wed, 14 Dec 2011 03:58:41 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id DD42CA183CC for ; Wed, 14 Dec 2011 03:58:41 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id k10so36706eaa.11 for ; Tue, 13 Dec 2011 19:58:41 -0800 (PST) Received: by 10.204.152.138 with SMTP id g10mr189670bkw.36.1323835121691; Tue, 13 Dec 2011 19:58:41 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.129.2 with SMTP id hg2cs100496bkc; Tue, 13 Dec 2011 19:58:41 -0800 (PST) Received: by 10.68.190.65 with SMTP id go1mr951406pbc.7.1323835119252; Tue, 13 Dec 2011 19:58:39 -0800 (PST) Received: from na3sys009aog105.obsmtp.com ([74.125.149.75]) by mx.google.com with SMTP id t10si4975852pbc.178.2011.12.13.19.58.35 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Dec 2011 19:58:39 -0800 (PST) Received-SPF: pass (google.com: domain of mturquette@ti.com designates 74.125.149.75 as permitted sender) client-ip=74.125.149.75; Authentication-Results: mx.google.com; spf=pass (google.com: domain of mturquette@ti.com designates 74.125.149.75 as permitted sender) smtp.mail=mturquette@ti.com Received: from mail-yx0-f178.google.com ([209.85.213.178]) (using TLSv1) by na3sys009aob105.postini.com ([74.125.148.12]) with SMTP ID DSNKTuge6lRkeeGyf9G2/abJqKYuWk6/s2cj@postini.com; Tue, 13 Dec 2011 19:58:39 PST Received: by mail-yx0-f178.google.com with SMTP id m5so333708yen.37 for ; Tue, 13 Dec 2011 19:58:34 -0800 (PST) Received: by 10.236.175.72 with SMTP id y48mr8717438yhl.17.1323835114635; Tue, 13 Dec 2011 19:58:34 -0800 (PST) Received: from localhost.localdomain (dragon.ti.com. [192.94.94.33]) by mx.google.com with ESMTPS id m38sm3562170anq.16.2011.12.13.19.58.31 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Dec 2011 19:58:34 -0800 (PST) Sender: "Turquette, Mike" From: Mike Turquette To: linux@arm.linux.org.uk Cc: linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, jeremy.kerr@canonical.com, paul@pwsan.com, broonie@opensource.wolfsonmicro.com, tglx@linutronix.de, linus.walleij@stericsson.com, amit.kucheria@linaro.org, dsaxena@linaro.org, patches@linaro.org, linaro-dev@lists.linaro.org, grant.likely@secretlab.ca, sboyd@quicinc.com, shawn.guo@freescale.com, skannan@quicinc.com, magnus.damm@gmail.com, arnd.bergmann@linaro.org, eric.miao@linaro.org, richard.zhao@linaro.org, mturquette@linaro.org, mturquette@ti.com, andrew@lunn.ch Subject: [PATCH v4 1/6] clk: Kconfig: add entry for HAVE_CLK_PREPARE Date: Tue, 13 Dec 2011 19:53:53 -0800 Message-Id: <1323834838-2206-2-git-send-email-mturquette@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1323834838-2206-1-git-send-email-mturquette@linaro.org> References: <1323834838-2206-1-git-send-email-mturquette@linaro.org> The common clk framework provides clk_prepare and clk_unprepare implementations. Create an entry for HAVE_CLK_PREPARE so that GENERIC_CLK can select it. Signed-off-by: Mike Turquette Acked-by: Shawn Guo --- drivers/clk/Kconfig | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 3530927..7a9899bd 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -5,3 +5,6 @@ config CLKDEV_LOOKUP config HAVE_MACH_CLKDEV bool + +config HAVE_CLK_PREPARE + bool