devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF
@ 2013-04-15  7:00 Sebastian Hesselbarth
  2013-04-16  0:55 ` Stephen Rothwell
  0 siblings, 1 reply; 3+ messages in thread
From: Sebastian Hesselbarth @ 2013-04-15  7:00 UTC (permalink / raw)
  To: Sebastian Hesselbarth
  Cc: Stephen Rothwell, Grant Likely, Rob Herring, Rob Landley,
	Mike Turquette, Stephen Warren, Thierry Reding, Dom Cobley,
	Linus Walleij, Arnd Bergmann, Andrew Morton, Pawel Moll,
	Mark Brown, Russell King - ARM Linux, Rabeeh Khoury, Daniel Mack,
	Jean-Francois Moine, Lars-Peter Clausen, Guenter Roeck,
	Michal Bachraty, devicetree-discuss, linux-doc, linux-k

Calling clk-si5351 driver non-OF ready was too early. This patch
makes clk-si5351 depend on CONFIG_OF again, until things get sorted out.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Reported-by: Stephen Rottweil <sfr@canb.auug.org.au>
---
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Rob Landley <rob@landley.net>
Cc: Mike Turquette <mturquette@linaro.org>
Cc: Stephen Warren <swarren@nvidia.com>
Cc: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Dom Cobley <popcornmix@gmail.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: Rabeeh Khoury <rabeeh@solid-run.com>
Cc: Daniel Mack <zonque@gmail.com>
Cc: Jean-Francois Moine <moinejf@free.fr>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Michal Bachraty <michal.bachraty@streamunlimited.com>
Cc: devicetree-discuss@lists.ozlabs.org
Cc: linux-doc@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
---
 drivers/clk/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index 5039e41..6412f55 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -58,6 +58,7 @@ config COMMON_CLK_MAX77686
 config COMMON_CLK_SI5351
 	tristate "Clock driver for SiLabs 5351A/B/C"
 	depends on I2C
+	depends on OF
 	select REGMAP_I2C
 	select RATIONAL
 	---help---
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF
  2013-04-15  7:00 [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF Sebastian Hesselbarth
@ 2013-04-16  0:55 ` Stephen Rothwell
  2013-04-16  4:45   ` Mike Turquette
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2013-04-16  0:55 UTC (permalink / raw)
  To: Sebastian Hesselbarth
  Cc: Grant Likely, Rob Herring, Rob Landley, Mike Turquette,
	Stephen Warren, Thierry Reding, Dom Cobley, Linus Walleij,
	Arnd Bergmann, Andrew Morton, Pawel Moll, Mark Brown,
	Russell King - ARM Linux, Rabeeh Khoury, Daniel Mack,
	Jean-Francois Moine, Lars-Peter Clausen, Guenter Roeck,
	Michal Bachraty, devicetree-discuss, linux-doc, linux-kernel,
	linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 589 bytes --]

Hi Sebastian,

On Mon, 15 Apr 2013 09:00:14 +0200 Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> wrote:
>
> Calling clk-si5351 driver non-OF ready was too early. This patch
> makes clk-si5351 depend on CONFIG_OF again, until things get sorted out.
> 
> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
> Reported-by: Stephen Rottweil <sfr@canb.auug.org.au>

My name is spelt "Rothwell" (as in the Cc: line below) :-(

> ---
> Cc: Stephen Rothwell <sfr@canb.auug.org.au>

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF
  2013-04-16  0:55 ` Stephen Rothwell
@ 2013-04-16  4:45   ` Mike Turquette
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Turquette @ 2013-04-16  4:45 UTC (permalink / raw)
  To: Stephen Rothwell, Sebastian Hesselbarth
  Cc: Grant Likely, Rob Herring, Rob Landley, Stephen Warren,
	Thierry Reding, Dom Cobley, Linus Walleij, Arnd Bergmann,
	Andrew Morton, Pawel Moll, Mark Brown, Russell King - ARM Linux,
	Rabeeh Khoury, Daniel Mack, Jean-Francois Moine,
	Lars-Peter Clausen, Guenter Roeck, Michal Bachraty,
	devicetree-discuss, linux-doc, linux-kernel, linux-arm-kernel

Quoting Stephen Rothwell (2013-04-15 17:55:13)
> Hi Sebastian,
> 
> On Mon, 15 Apr 2013 09:00:14 +0200 Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> wrote:
> >
> > Calling clk-si5351 driver non-OF ready was too early. This patch
> > makes clk-si5351 depend on CONFIG_OF again, until things get sorted out.
> > 
> > Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
> > Reported-by: Stephen Rottweil <sfr@canb.auug.org.au>
> 
> My name is spelt "Rothwell" (as in the Cc: line below) :-(
> 

It's fixed in the merged version.

Regards,
Mike

> > ---
> > Cc: Stephen Rothwell <sfr@canb.auug.org.au>
> 
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-04-16  4:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-15  7:00 [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF Sebastian Hesselbarth
2013-04-16  0:55 ` Stephen Rothwell
2013-04-16  4:45   ` Mike Turquette

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).