linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: grant.likely@secretlab.ca (Grant Likely)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 6/7] clk: Add initial WM831x clock driver
Date: Sat, 24 Sep 2011 22:08:36 -0600	[thread overview]
Message-ID: <20110925040836.GP24631@ponder.secretlab.ca> (raw)
In-Reply-To: <1316730422-20027-7-git-send-email-mturquette@ti.com>

On Thu, Sep 22, 2011 at 03:27:01PM -0700, Mike Turquette wrote:
> From: Mark Brown <broonie@opensource.wolfsonmicro.com>
> 
> The WM831x and WM832x series of PMICs contain a flexible clocking
> subsystem intended to provide always on and system core clocks.  It
> features:
> 
> - A 32.768kHz crystal oscillator which can optionally be used to pass
>   through an externally generated clock.
> - A FLL which can be clocked from either the 32.768kHz oscillator or
>   the CLKIN pin.
> - A CLKOUT pin which can bring out either the oscillator or the FLL
>   output.
> - The 32.768kHz clock can also optionally be brought out on the GPIO
>   pins of the device.
> 
> This driver fully supports the 32.768kHz oscillator and CLKOUT.  The FLL
> is supported only in AUTO mode, the full flexibility of the FLL cannot
> currently be used.  The use of clock references other than the internal
> oscillator is not currently supported, and since clk_set_parent() is not
> implemented in the generic clock API the clock tree configuration cannot
> be changed at runtime.
> 
> Due to a lack of access to systems where the core SoC has been converted
> to use the generic clock API this driver has been compile tested only.
> 
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Signed-off-by: Mike Turquette <mturquette@ti.com>

A few minor comments below.  Otherwise looks fine to me.

> +static __devinit int wm831x_clk_probe(struct platform_device *pdev)
> +{
> +	struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent);
> +	struct wm831x_clk *clkdata;
> +	int ret;
> +
> +	clkdata = kzalloc(sizeof(*clkdata), GFP_KERNEL);

If devm_kzalloc() is used, then all the kfree unwinding can be
dropped.

> +static int __init wm831x_clk_init(void)
> +{
> +	int ret;
> +
> +	ret = platform_driver_register(&wm831x_clk_driver);
> +	if (ret != 0)
> +		pr_err("Failed to register WM831x clock driver: %d\n", ret);
> +
> +	return ret;

No need for this song-and-dance.  The driver core is pretty well
debugged.  Just use "return platform_driver_register(...);"

g.

  reply	other threads:[~2011-09-25  4:08 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-22 22:26 [PATCH v2 0/7] Add a generic struct clk Mike Turquette
2011-09-22 22:26 ` [PATCH v2 1/7] clk: Add a generic clock infrastructure Mike Turquette
2011-09-25  3:55   ` Grant Likely
2011-09-25  5:26     ` Turquette, Mike
2011-10-03 14:17   ` Rob Herring
2011-10-03 14:25     ` Mark Brown
2011-10-03 15:24       ` Rob Herring
2011-10-03 16:31         ` Mark Brown
2011-10-03 16:43           ` Russell King - ARM Linux
2011-10-03 17:05             ` Mark Brown
2011-10-04 18:09     ` Grant Likely
2011-10-27 11:54     ` Domenico Andreoli
2011-10-03 22:02   ` Rob Herring
2011-10-03 22:15     ` Turquette, Mike
2011-10-06  1:17   ` Saravana Kannan
2011-10-06 16:11     ` Turquette, Mike
2011-10-11 11:25   ` Richard Zhao
2011-10-13 14:44   ` Russell King - ARM Linux
2011-10-13 17:16     ` Turquette, Mike
2011-10-14  8:10   ` Richard Zhao
2011-10-14 10:05     ` Mark Brown
2011-10-14 10:32       ` Richard Zhao
2011-10-16 17:55         ` Sascha Hauer
2011-10-17  8:48           ` Richard Zhao
2011-10-17  9:20             ` Mark Brown
2011-10-17 10:53               ` Richard Zhao
2011-10-17 11:05                 ` Sascha Hauer
2011-10-17 11:30                   ` Russell King - ARM Linux
2011-10-14 18:14   ` Turquette, Mike
2011-10-15  2:24     ` Richard Zhao
2011-10-15  2:34       ` Richard Zhao
2011-10-16 21:17       ` Turquette, Mike
2011-10-17 11:31         ` Richard Zhao
2011-10-21  9:00   ` Richard Zhao
2011-10-23 12:55   ` Shawn Guo
2011-10-23 16:49     ` Turquette, Mike
2011-09-22 22:26 ` [PATCH v2 2/7] clk: Implement clk_set_rate Mike Turquette
2011-10-11 11:49   ` Richard Zhao
2011-10-23 14:24   ` Shawn Guo
2011-10-23 16:50     ` Turquette, Mike
2011-09-22 22:26 ` [PATCH v2 3/7] clk: Add fixed-rate clock Mike Turquette
2011-10-23 14:30   ` Shawn Guo
2011-10-23 16:51     ` Turquette, Mike
2011-09-22 22:26 ` [PATCH v2 4/7] clk: Add simple gated clock Mike Turquette
2011-09-25  4:02   ` Grant Likely
2011-09-25  5:27     ` Turquette, Mike
2011-09-26 18:33   ` Rob Herring
2011-09-26 18:40     ` Jamie Iles
2011-09-26 19:10       ` Rob Herring
2011-09-26 19:37         ` Jamie Iles
2011-09-26 22:37           ` Turquette, Mike
2011-09-26 23:30             ` Rob Herring
2011-10-05  1:41               ` Saravana Kannan
2011-10-12  6:46   ` Richard Zhao
2011-10-12 14:59     ` Turquette, Mike
2011-10-16 18:26       ` Sascha Hauer
2011-10-17  6:42         ` Richard Zhao
2011-10-17 17:46           ` Turquette, Mike
2011-10-13 14:45   ` Russell King - ARM Linux
2011-10-13 17:18     ` Turquette, Mike
2011-09-22 22:27 ` [PATCH v2 5/7] clk: Add Kconfig option to build all generic clk drivers Mike Turquette
2011-09-22 22:27 ` [PATCH v2 6/7] clk: Add initial WM831x clock driver Mike Turquette
2011-09-25  4:08   ` Grant Likely [this message]
2011-09-25  5:29     ` Turquette, Mike
2011-09-26  9:38     ` Mark Brown
2011-10-04 18:18       ` Grant Likely
2011-10-04 20:50         ` Mark Brown
2011-10-04 23:22           ` Grant Likely
2011-09-22 22:27 ` [PATCH v2 7/7] x86: Enable generic clk API on x86 Mike Turquette
2011-09-22 23:17 ` [PATCH v2 0/7] Add a generic struct clk Turquette, Mike
2011-09-25  4:10 ` Grant Likely
2011-09-29 18:54 ` Mark Brown

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=20110925040836.GP24631@ponder.secretlab.ca \
    --to=grant.likely@secretlab.ca \
    --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;
as well as URLs for NNTP newsgroup(s).