Re: [PATCH v6 22/22] of/platform: Defer probes of registered devices

2015-10-28 Thread Tomeu Vizoso
On 22 October 2015 at 23:27, Scott Wood wrote: > On Thu, 2015-10-22 at 15:04 +0200, Tomeu Vizoso wrote: >> On 22 October 2015 at 00:51, Scott Wood wrote: >> > On Wed, 2015-10-21 at 08:44 -0500, Rob Herring wrote: >> > > On Wed, Oct 21, 2015 at 12:54 AM, Scott Wood

Re: [PATCH v6 22/22] of/platform: Defer probes of registered devices

2015-10-22 Thread Tomeu Vizoso
On 22 October 2015 at 00:51, Scott Wood wrote: > On Wed, 2015-10-21 at 08:44 -0500, Rob Herring wrote: >> On Wed, Oct 21, 2015 at 12:54 AM, Scott Wood >> wrote: >> > On Mon, 2015-09-21 at 16:03 +0200, Tomeu Vizoso wrote: >> > > Instead of trying to match and p

[PATCH] ASoC: fsl_spdif: Remove unused includes of linux/clk-private.h

2014-10-03 Thread Tomeu Vizoso
Signed-off-by: Tomeu Vizoso --- sound/soc/fsl/fsl_spdif.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sound/soc/fsl/fsl_spdif.c b/sound/soc/fsl/fsl_spdif.c index 70acfe4..5bda323 100644 --- a/sound/soc/fsl/fsl_spdif.c +++ b/sound/soc/fsl/fsl_spdif.c @@ -15,7 +15,6 @@ #include

Re: [PATCH v8 3/7] clk: Move all drivers to use internal API

2014-09-03 Thread Tomeu Vizoso
On 09/02/2014 09:13 AM, Ulf Hansson wrote: On 1 September 2014 17:32, Tomeu Vizoso wrote: In preparation to change the public API to return a per-user clk structure, remove any usage of this public API from the clock implementations. The reason for having this in a separate commit from the

Re: [PATCH v4 6/6] clk: Add floor and ceiling constraints to clock rates

2014-07-31 Thread Tomeu Vizoso
On 07/22/2014 07:50 PM, Stephen Warren wrote: On 07/17/2014 08:13 AM, Tomeu Vizoso wrote: Adds a way for clock consumers to set maximum and minimum rates. This can be used for thermal drivers to set ceiling rates, or by misc. drivers to set floor rates to assure a minimum performance level

[PATCH v4 6/6] clk: Add floor and ceiling constraints to clock rates

2014-07-17 Thread Tomeu Vizoso
Adds a way for clock consumers to set maximum and minimum rates. This can be used for thermal drivers to set ceiling rates, or by misc. drivers to set floor rates to assure a minimum performance level. Signed-off-by: Tomeu Vizoso --- drivers/clk/clk.c | 103

[PATCH v4 5/6] clk: per-user clock accounting for debug

2014-07-17 Thread Tomeu Vizoso
accounting and disabler tracking in order to help debug these problems. Based on previous work by Rabin Vincent . Signed-off-by: Tomeu Vizoso --- drivers/clk/clk.c | 38 ++ drivers/clk/clk.h | 3 ++- drivers/clk/clkdev.c| 12

[PATCH v4 2/6] ASoC: mxs-saif: fix mixed use of public and provider clk API

2014-07-17 Thread Tomeu Vizoso
In preparation to changing the clk provider API to use struct clk_core instead of struct clk. Signed-off-by: Tomeu Vizoso --- sound/soc/mxs/mxs-saif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c index 231d7e7

[PATCH v4 1/6] clk: Add temporary mapping to the existing API

2014-07-17 Thread Tomeu Vizoso
To preserve git-bisectability, add aliases from the future provider API to the existing public API. Also includes clk-provider.h and clk-dev.h in a few places so the right functions are defined. Signed-off-by: Tomeu Vizoso --- v4: * Add more clk-provider.h includes to clk implementations

[PATCH v4 0/6] Per-user clock constraints

2014-07-17 Thread Tomeu Vizoso
API for setting floor and ceiling frequencies, per consumer. [0] http://thread.gmane.org/gmane.linux.kernel/1402006 [1] http://cgit.collabora.com/git/user/tomeu/linux.git/commit/?id=da9c7e34d9 Thanks, Tomeu Tomeu Vizoso (6): clk: Add temporary mapping to the existing API ASoC: mxs-saif: f