Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-29 Thread Ricardo Ribalda Delgado
Hi again On Wed, Jun 29, 2016 at 10:07 AM, Ricardo Ribalda Delgado wrote: > - I can send it as a proper patch if you prefer tat. Just realised how bad the code is treated by gmail. You can navigate more easily through the code here:

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-29 Thread Ricardo Ribalda Delgado
Hi again On Wed, Jun 29, 2016 at 10:07 AM, Ricardo Ribalda Delgado wrote: > - I can send it as a proper patch if you prefer tat. Just realised how bad the code is treated by gmail. You can navigate more easily through the code here: https://github.com/ribalda/linux/tree/clk-platform-v4

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-29 Thread Ricardo Ribalda Delgado
Hi Stephen On Tue, Jun 28, 2016 at 8:04 PM, Stephen Boyd wrote: > Almost, except that this flag should be set in the common clk > framework and not in each driver. The large majority of cases > will want that. Only a few will want to clear it, and then we can > hide that

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-29 Thread Ricardo Ribalda Delgado
Hi Stephen On Tue, Jun 28, 2016 at 8:04 PM, Stephen Boyd wrote: > Almost, except that this flag should be set in the common clk > framework and not in each driver. The large majority of cases > will want that. Only a few will want to clear it, and then we can > hide that fact by having a

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-28 Thread Stephen Boyd
On 06/21, Ricardo Ribalda Delgado wrote: > @@ -145,23 +146,24 @@ EXPORT_SYMBOL_GPL(clk_hw_unregister_fixed_factor); > /** > * of_fixed_factor_clk_setup() - Setup function for simple fixed factor clock > */ > -void __init of_fixed_factor_clk_setup(struct device_node *node) > +struct clk

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-28 Thread Stephen Boyd
On 06/21, Ricardo Ribalda Delgado wrote: > @@ -145,23 +146,24 @@ EXPORT_SYMBOL_GPL(clk_hw_unregister_fixed_factor); > /** > * of_fixed_factor_clk_setup() - Setup function for simple fixed factor clock > */ > -void __init of_fixed_factor_clk_setup(struct device_node *node) > +struct clk

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-28 Thread Ricardo Ribalda Delgado
Ping? On Tue, Jun 21, 2016 at 11:01 AM, Ricardo Ribalda Delgado wrote: > Adds support for fixed-factor clock providers which have not been > enabled via of_clk_init(). > > This is required by Device trees overlays that introduce clocks > providers. > > Signed-off-by:

Re: [PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-28 Thread Ricardo Ribalda Delgado
Ping? On Tue, Jun 21, 2016 at 11:01 AM, Ricardo Ribalda Delgado wrote: > Adds support for fixed-factor clock providers which have not been > enabled via of_clk_init(). > > This is required by Device trees overlays that introduce clocks > providers. > > Signed-off-by: Ricardo Ribalda Delgado >

[PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-21 Thread Ricardo Ribalda Delgado
Adds support for fixed-factor clock providers which have not been enabled via of_clk_init(). This is required by Device trees overlays that introduce clocks providers. Signed-off-by: Ricardo Ribalda Delgado --- v3: Changes proposed by: Stephen Boyd

[PATCH v3 1/2] clk: fixed-factor: Convert into a module platform driver

2016-06-21 Thread Ricardo Ribalda Delgado
Adds support for fixed-factor clock providers which have not been enabled via of_clk_init(). This is required by Device trees overlays that introduce clocks providers. Signed-off-by: Ricardo Ribalda Delgado --- v3: Changes proposed by: Stephen Boyd -Use OF_POPULATED flag v2: Changes proposed