From: jeremy.kerr@canonical.com (Jeremy Kerr)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] arm/clkdev: Allow common struct clk usage
Date: Wed, 15 Sep 2010 11:40:14 +0800 [thread overview]
Message-ID: <1284522014.517930.215380014193.3.gpush@pororo> (raw)
In-Reply-To: <1284522014.516876.675872472687.0.gpush@pororo>
A couple of small changes to allow the common struct clk infrastructure
on ARM. The common clock API provides clk_put, and we no longer need
mach/clkdev.h (as we don't need __clk_put anymore).
Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
---
arch/arm/common/clkdev.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/arch/arm/common/clkdev.c b/arch/arm/common/clkdev.c
index e2b2bb6..d7dc1f8 100644
--- a/arch/arm/common/clkdev.c
+++ b/arch/arm/common/clkdev.c
@@ -21,7 +21,10 @@
#include <linux/slab.h>
#include <asm/clkdev.h>
+
+#ifndef CONFIG_USE_COMMON_STRUCT_CLK
#include <mach/clkdev.h>
+#endif
static LIST_HEAD(clocks);
static DEFINE_MUTEX(clocks_mutex);
@@ -87,14 +90,21 @@ struct clk *clk_get(struct device *dev, const char *con_id)
}
EXPORT_SYMBOL(clk_get);
+#ifndef CONFIG_USE_COMMON_STRUCT_CLK
+/* For the common struct clk case, clk_put is provided by the kernel-wide
+ * API. */
+
void clk_put(struct clk *clk)
{
__clk_put(clk);
}
EXPORT_SYMBOL(clk_put);
+#endif
+
void clkdev_add(struct clk_lookup *cl)
{
+ clk_common_init(cl->clk);
mutex_lock(&clocks_mutex);
list_add_tail(&cl->node, &clocks);
mutex_unlock(&clocks_mutex);
next prev parent reply other threads:[~2010-09-15 3:40 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-15 3:40 [PATCH 0/3] Common struct clk implementation, v7 Jeremy Kerr
2010-09-15 3:40 ` [PATCH 2/3] clk: Generic support for fixed-rate clocks Jeremy Kerr
2010-09-15 3:40 ` Jeremy Kerr [this message]
2010-09-15 3:40 ` [PATCH 1/3] Add a common struct clk Jeremy Kerr
2010-09-16 13:09 ` Jassi Brar
2010-09-17 0:24 ` Jeremy Kerr
2010-09-17 0:55 ` Jassi Brar
2010-09-17 2:16 ` Jassi Brar
2010-11-27 15:56 ` Jassi Brar
2010-11-29 7:59 ` Jeremy Kerr
2010-12-07 14:31 ` Uwe Kleine-König
2010-12-08 1:02 ` Jeremy Kerr
2010-12-08 8:45 ` Uwe Kleine-König
2010-12-08 16:48 ` Ben Dooks
2010-12-09 2:16 ` Jeremy Kerr
2010-12-10 15:09 ` Richard Zhao
2010-12-11 2:21 ` Jassi Brar
2010-09-15 5:53 ` [PATCH 0/3] Common struct clk implementation, v7 Jean-Christophe PLAGNIOL-VILLARD
2010-09-15 6:08 ` Jeremy Kerr
2010-09-16 1:51 ` Paul Mundt
2010-09-15 8:15 ` Paulius Zaleckas
2010-09-15 23:15 ` Colin Cross
2010-09-16 8:19 ` Jeremy Kerr
2010-09-26 23:57 ` Ben Dooks
-- strict thread matches above, loose matches on Subject: below --
2010-07-30 7:03 [PATCH 0/3] Common struct clk implementation, v6 Jeremy Kerr
2010-07-30 7:03 ` [PATCH 3/3] arm/clkdev: Allow common struct clk usage Jeremy Kerr
2010-08-03 4:17 ` Gadiyar, Anand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1284522014.517930.215380014193.3.gpush@pororo \
--to=jeremy.kerr@canonical.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox