Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-18 Thread Dinh Nguyen
On 12/17/18 7:54 PM, Stephen Boyd wrote: > Quoting Dinh Nguyen (2018-12-06 07:16:47) >> >> >> On 12/5/18 9:55 AM, Stephen Boyd wrote: >>> Quoting Dinh Nguyen (2018-12-05 07:17:41) Hi Stephen, On 12/5/18 1:17 AM, Stephen Boyd wrote: > (Adding Dinh's korg email) > > I

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-17 Thread Stephen Boyd
Quoting Dinh Nguyen (2018-12-06 07:16:47) > > > On 12/5/18 9:55 AM, Stephen Boyd wrote: > > Quoting Dinh Nguyen (2018-12-05 07:17:41) > >> Hi Stephen, > >> > >> On 12/5/18 1:17 AM, Stephen Boyd wrote: > >>> (Adding Dinh's korg email) > >>> > >>> I also wonder if this driver is even used anymore

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-06 Thread Dinh Nguyen
On 12/5/18 9:55 AM, Stephen Boyd wrote: > Quoting Dinh Nguyen (2018-12-05 07:17:41) >> Hi Stephen, >> >> On 12/5/18 1:17 AM, Stephen Boyd wrote: >>> (Adding Dinh's korg email) >>> >>> I also wonder if this driver is even used anymore or maybe we can delete >>> it? >>> >> >> The armv7 SoCFPGA

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-06 Thread Dinh Nguyen
On 12/5/18 9:55 AM, Stephen Boyd wrote: > Quoting Dinh Nguyen (2018-12-05 07:17:41) >> Hi Stephen, >> >> On 12/5/18 1:17 AM, Stephen Boyd wrote: >>> (Adding Dinh's korg email) >>> >>> I also wonder if this driver is even used anymore or maybe we can delete >>> it? >>> >> >> The armv7 SoCFPGA

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-05 Thread Stephen Boyd
Quoting Dinh Nguyen (2018-12-05 07:17:41) > Hi Stephen, > > On 12/5/18 1:17 AM, Stephen Boyd wrote: > > (Adding Dinh's korg email) > > > > I also wonder if this driver is even used anymore or maybe we can delete > > it? > > > > The armv7 SoCFPGA platforms are using this driver. > Ok and

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-05 Thread Stephen Boyd
Quoting Dinh Nguyen (2018-12-05 07:17:41) > Hi Stephen, > > On 12/5/18 1:17 AM, Stephen Boyd wrote: > > (Adding Dinh's korg email) > > > > I also wonder if this driver is even used anymore or maybe we can delete > > it? > > > > The armv7 SoCFPGA platforms are using this driver. > Ok and

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-05 Thread Dinh Nguyen
Hi Stephen, On 12/5/18 1:17 AM, Stephen Boyd wrote: > (Adding Dinh's korg email) > > I also wonder if this driver is even used anymore or maybe we can delete > it? > The armv7 SoCFPGA platforms are using this driver. Dinh

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-05 Thread Dinh Nguyen
Hi Stephen, On 12/5/18 1:17 AM, Stephen Boyd wrote: > (Adding Dinh's korg email) > > I also wonder if this driver is even used anymore or maybe we can delete > it? > The armv7 SoCFPGA platforms are using this driver. Dinh

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-04 Thread Stephen Boyd
(Adding Dinh's korg email) I also wonder if this driver is even used anymore or maybe we can delete it? Quoting Stephen Boyd (2018-12-04 11:34:16) > This driver creates a gate clk with the possibility to have multiple > parents. That can cause problems if the common clk framework tries to > call

Re: [PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-04 Thread Stephen Boyd
(Adding Dinh's korg email) I also wonder if this driver is even used anymore or maybe we can delete it? Quoting Stephen Boyd (2018-12-04 11:34:16) > This driver creates a gate clk with the possibility to have multiple > parents. That can cause problems if the common clk framework tries to > call

[PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-04 Thread Stephen Boyd
This driver creates a gate clk with the possibility to have multiple parents. That can cause problems if the common clk framework tries to call the get_parent() op and gets back a number that's larger than the number of parents the clk says it supports in clk_init_data::num_parents. Let's

[PATCH] clk: socfpga: Don't have get_parent for single parent ops

2018-12-04 Thread Stephen Boyd
This driver creates a gate clk with the possibility to have multiple parents. That can cause problems if the common clk framework tries to call the get_parent() op and gets back a number that's larger than the number of parents the clk says it supports in clk_init_data::num_parents. Let's